OAuth token failure - curl: (6) Could not resolve host: POSTIssue When the administrator does a POST to the instance to test the OAuth token, the error "Could not resolve host: POST" is thrown, mostly with the curl command.CauseThis happens because the administrator assumes the behavior to be similar with Postman. The command:curl -d "grant_type=password&client_id=xxxxxxxxxx&client_secret=xxxxxxxx&username=xxxxxxx&password=xxxxxxxx" POST https://instance_name.service-now.com/oauth_token.do will generate the following response: curl: (6) Could not resolve host: POST {"access_token":"xxx","refresh_token":"xxx","scope":"useraccount","token_type":"Bearer","expires_in":xxx}% ResolutionThis is expected behavior. Exclude POST from the command and write it as follows for the warning to not show up: curl -d "grant_type=password&client_id=xxx&client_secret=xxx&username=xxx&password=xxx" https://instance_name.service-now.com/oauth_token.do {"access_token":"xxx","refresh_token":"xxx","scope":"useraccount","token_type":"Bearer","expires_in":xxx}%