I am able to signup and verify a user using Google's Advanced Rest Client. However, when I try to login the user, I get this response:
{
"timestamp": 1471401958802
"status": 404
"error": "Not Found"
"message": "No message available"
"path": "/api/core/login"
}
I am passing the content-type and X-Xsrf-Token header fields with the following json in the POST request:
{
"email": "user1@example.com",
"password": "user1!",
"rememberMe": "false"
}
What is the issue?