Http.post not sending data

I’m sorry, I did not know that you are banned in Google.

If I remember, you need use something like this:

let body = new FormData();
body.append('email', email);
body.append('password', password);

let headers = new Headers({
  'Content-Type': undefined
});
1 Like