(2) this one…
i have one user in ionic user database having details
{
“email” : "testing@gmail.com",
“password”: “asdasd”
}
if i pass this details in
this.auth.login(‘basic’, details).then(()=>{
// Here i can able get success result of user
});
but if user entered wrong password then user can’t able to logged in right, i have to show him “your password is invalid”
for this error message i am not able to get the response for invalid credentials, i am getting network error
