I'm trying to register a new user using:
Backand.signup(firstName, lastName, username, password, password2);
but I end up getting:
XMLHttpRequest cannot load https://api.backand.com/1/user/signup.
No 'Access-Control-Allow-Origin' header is present on the
requested resource. Origin 'http://localhost:8100' is therefore
not allowed access.
The response had HTTP status code 504.
This endpoint always used to work, with this setup, but it seemed to stop working today. AFAIK, I hit all my endpoints at this url "https://api.backand.com/ doing GET's, PUT's, POST's, etc and they all work as expected. This is the only one showing this behavior.
How could every other endpoint work fine at this url, except for /1/user/signup
?
Any help would be appreciated.