I made a Family Tree app which updates the DB at several users using PARSE.
It works nice and I made an equivalent app with B4j but the PARSE lib is not compatible.
Agraham showed me their REST API https://parse.com/docs/rest#users-login
It looks like something that can be done using HTTP and HTTPUTILS but I have no experience. The examples are in PYTHON or CURL.
For example : login process
But got lost afterwards. I guess it should be job1.download2() with the username & password (which I have).
After login I need to get objects and send objects.
If someone could help – I’ll appreciate.
To update an object I have to put its objectId in the path.
I want to access the object not by its objectId but by one of the fields (like "No" = 110), like I do when I want to get the object, and then update some of its fields. So it is not an output to achieve, its an input !
In the library now it is doing first a query to get the ID and then the update. If what I ask is possible it will save a cycle at parse.