I am trying to get first step of OAuth working with the API using the following JSON,
"authorize": {
"url": "https://identity.reckon.com/connect/authorize",
"qs": {
"client_id": "{{base64(common.clientId)}}",
"response_type": "code",
"redirect_uri": "{{oauth.localRedirectUri}}",
"scope": "{{join(oauth.scope, ' ')}}",
"state": "random_state"
},
I have swapped and changed everything about and still get the error. The only information I receive is:
Request Id: c13cd1c6-a2f9-45ba-83c2-fb91d71b32b8
I have checked and the ClientID provide is being correctly encoded to Base64.
Could someone point out what I am doing wrong?