Closed mfarees closed 7 years ago
Good question. Instead of using x-www-form-urlencoded, use the "raw" option and put in your email, password, and strategy as data.
Also use http://localhost:3030/api/authentication
instead of http://localhost:3030/api/auth/local
. I believe this was something that was updated in Feathers 2
Thanks. That did the trick. I just changed the URL to
http://localhost:3030/api/authentication
Thanks
I am attempting to login via REST service (I'm using Postman for this but just converted it's request to a CURL request for sharing here),
But the server returns the following response,
{"name":"NotFound","message":"Page not found","code":404,"className":"not-found","errors":{}}
I am able to create users, get messages, get users all by REST. But authentication just isn't working for me. What am I doing wrong?