DataFlex / Reloadly API / Access Token
Back to Collection Items
Use ChilkatAx-win32.pkg
Procedure Test
Handle hoHttp
Boolean iSuccess
Variant vJson
Handle hoJson
Variant vResp
Handle hoResp
String sTemp1
Integer iTemp1
Boolean bTemp1
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Get Create (RefClass(cComChilkatHttp)) To hoHttp
If (Not(IsComObjectCreated(hoHttp))) Begin
Send CreateComObject of hoHttp
End
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "client_id": "CLIENT_ID_GOES_HERE",
// "client_secret": "CLIENT_SECRET_GOES_HERE",
// "grant_type": "client_credentials",
// "audience": "https://topups.reloadly.com"
// }
Get Create (RefClass(cComChilkatJsonObject)) To hoJson
If (Not(IsComObjectCreated(hoJson))) Begin
Send CreateComObject of hoJson
End
Get ComUpdateString Of hoJson "client_id" "CLIENT_ID_GOES_HERE" To iSuccess
Get ComUpdateString Of hoJson "client_secret" "CLIENT_SECRET_GOES_HERE" To iSuccess
Get ComUpdateString Of hoJson "grant_type" "client_credentials" To iSuccess
Get ComUpdateString Of hoJson "audience" "https://topups.reloadly.com" To iSuccess
Send ComSetRequestHeader To hoHttp "Content-Type" "application/json"
Get pvComObject of hoJson to vJson
Get ComPostJson3 Of hoHttp "https://auth.reloadly.com/oauth/token" "application/json" vJson To vResp
If (IsComObject(vResp)) Begin
Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
Set pvComObject Of hoResp To vResp
End
Get ComLastMethodSuccess Of hoHttp To bTemp1
If (bTemp1 = False) Begin
Get ComLastErrorText Of hoHttp To sTemp1
Showln sTemp1
Procedure_Return
End
Get ComStatusCode Of hoResp To iTemp1
Showln iTemp1
Get ComBodyStr Of hoResp To sTemp1
Showln sTemp1
Send Destroy of hoResp
End_Procedure
Curl Command
curl -X POST
-H "Content-Type: application/json"
-d '{
"client_id":"CLIENT_ID_GOES_HERE",
"client_secret":"CLIENT_SECRET_GOES_HERE",
"grant_type":"client_credentials",
"audience":"https://topups.reloadly.com"
}'
https://auth.reloadly.com/oauth/token
Postman Collection Item JSON
{
"name": "Access Token",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"client_id\":\"CLIENT_ID_GOES_HERE\",\n\t\"client_secret\":\"CLIENT_SECRET_GOES_HERE\",\n\t\"grant_type\":\"client_credentials\",\n\t\"audience\":\"https://topups.reloadly.com\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "https://auth.reloadly.com/oauth/token",
"protocol": "https",
"host": [
"auth",
"reloadly",
"com"
],
"path": [
"oauth",
"token"
]
}
},
"response": [
]
}