Because of CORS, you get this error
XMLHttpRequest cannot load https://www.facebook.com/dialog/oauth/?client_id=1144944195566920&redirect_uri=https://api.backendless.com/v1/users/social/facebook/authorize/2AD8E0F2-F1F0-D1AC-FF02-0070FF033C00&scope=&state=633761624. No ‘Access-Control-Allow-Origin’ header is present on the requested resource. Origin ‘http://localhost:3000’ is therefore not allowed access.
If you paste the url into browser, everything works. It will redirect to https://api.backendless.com and you get the user JSON. However, you cannot make the request from JavaScript inside a browser because of CORS.
Please let me know if you have any solution for this. I feel I have to use a proper SDK login with Facebook and then post the user to Backendless. If that is the case, please add a warning to the easy login document at https://backendless.com/documentation/users/rest/users_facebook_login.htm
–Gordon