peskywinnets
Registered User.
- Local time
- Today, 12:55
- Joined
- Feb 4, 2014
- Messages
- 578
Does anyone have the 'chops' to be able to arrange the following short snippet of code into VBA...
POST /auth/connect/token HTTP/1.1
Host: sandbox.parcel2go.com
User-Agent: insomnia/5.14.6
Content-Type: application/x-www-form-urlencoded
Accept: */*
grant_type=client_credentials
&scope=public-api%20payment
&client_id=<client_id>
&client_secret=<client_secret>
...I have my clientID & Secret key, but struggling to deploy. The response (once a successful call is made should be a token)...
{
"access_token": "435435435345SDFS...",
"expires_in": 7200,
"token_type": "Bearer"
}
Reference - https://www.parcel2go.com/api/docs/articles/quickstart.html
Many thanks in anticipation [/code]
POST /auth/connect/token HTTP/1.1
Host: sandbox.parcel2go.com
User-Agent: insomnia/5.14.6
Content-Type: application/x-www-form-urlencoded
Accept: */*
grant_type=client_credentials
&scope=public-api%20payment
&client_id=<client_id>
&client_secret=<client_secret>
...I have my clientID & Secret key, but struggling to deploy. The response (once a successful call is made should be a token)...
{
"access_token": "435435435345SDFS...",
"expires_in": 7200,
"token_type": "Bearer"
}
Reference - https://www.parcel2go.com/api/docs/articles/quickstart.html
Many thanks in anticipation [/code]