Strange Angular Rest call behaviour
问题 I use Angular to make a call to Atlassian JIRA's REST API. Angular is used in the context of an ionic-framework app on a device. A curl as curl -X POST 'https://url' -H 'Accept: application/json, text/plain, */*' -H 'Authorization: Basic a2someStuff' -H 'Content-Type: application/json' --data-binary '{"transition": {"id": "761"}}' Works and produces the desired result. However if I perform the query using regular angular curl -X POST 'https://url' -H 'Accept: application/json, text/plain, */*