Angular2 – Http POST request parameters

I think that the body isn’t correct for an application/x-www-form-urlencoded content type. You could try to use this:

var body = 'username=myusername&password=mypassword';

Hope it helps you, Thierry

Leave a Comment