The question is simple: how do I post x-www-form-urlencoded content with Aurelia Fetch client?
x-www-form-urlencoded
I need to make the post to a simple ASP.NET Web API serve
You would use FormData like this:
function sendForm() { var formData = new FormData(); formData.append('email', 'test@test.com'); formData.append('password', '123456'); http.post(url, formData); }