Having real trouble getting a user to login using Parse.
I have registered a user, no problem but cannot get that same user to login.
The error I get is - {“code”:101,“error”:“invalid login parameters”}
Even using the sample code in the code sharing section (which my code is based on), I get the same error.
headers["Content-Type"] = "application/x-www-form-urlencoded" params.body = nil local query = "?username=" .. encode\_parameter(obj.username) .. "&password=" .. encode\_parameter(obj.password) network.request( "https://api.parse.com/1/login .. query, "GET", networkListener, params)
This is the API details on parse - https://parse.com/docs/rest#users-login
Dave