I’m trying to get the access token.
URI: https://account-d.docusign.com/oauth/token
header
Authorization: base64 encoded of integration and secret.
body
grant_type: authorization_code
code: Code from the auth response.
But I got the reply
{
"error": "invalid_grant",
"error_description": "unsupported_grant_type"
}
Any idea what I’ve done wrong?