Cannot register new user, error 8002

http://support.backendless.com/public/attachments/4e5babd78fda5f52e48b2d06e1a0765b.png</img>

Hi Nikolay,

Please provide also the body of the request.

https://api.backendless.com/v1/users/register?email=test@gmail.com&password=testPass

You’re sending the user in request parameters, which is not supported by Backendless server.
You should send the following JSON in request body instead:

{ "email" : "test@gmail.com", "password" : "testPass" }

http://support.backendless.com/public/attachments/37cf94ffa43315898b31047b01a232a7.png</img>

Still not working

You checked “form-data”, this is why the data goes into request parameters. Try using “raw” instead.

It works, thanks