Hey Guys,
I cannot for the life of me figure out what I'm doing wrong here. I'm trying to do a simple POST to a URL to request an access token. The request requires a parameter of grant_type=client_credentials. I add the parameter into the body of the request but it is not working, I've tried a ton of different syntax in the body but cannot figure out what to use.
Example curl:
- Send a POST request to thingspace.verizon.com/api/ts/v1/oauth2/token with the encoded string in the header.
Curl Example:
curl -X POST -d "grant_type=client_credentials" -H "Authorization: Basic BASE64_ENCODED_APP_KEY_AND_SECRET" -H "Content-Type: application/x-www-form-urlencoded" "/api/ts/v1/oauth2/token"
In postman it works just fine but not in solarwinds.
POSTMAN:

SOLARWINDS:

