Hi, how can i get a succesful response via HTTP from my API?
Issueing the request via curl works well. Tried it via meteor (serverside) but this didn’t work out unfortunately (ECONNRESET):
The --data option to curl specifies that form-encoded data is to be sent (sets the header content-type application/x-www-form-urlencoded).
The recommended way to send form-encoded data in a POST request with Meteor is by using the params field (not data), which also sets that header. So, you should try: