Trying to follow Getting access token for uploads in v4 a
curl https://graph.mapillary.com/token
-H “Content-Type: application/json”
-H “Authorization: OAuth CLIENT_SECRET” \ from dev console
-d’
{
“grant_type”: “authorization_code”,
“code”: “LONG_AUTHORIZATION_CODE”, \from url redriects
“client_id”: 1234
}’
and am getting. Any idea how to debug?
{“error”:{“message”:“Invalid OAuth access token - Cannot parse access token”,“type”:“OAuthException”,“code”:190,“fbtrace_id”:“AXwX6YzoYvSrpS_1Y1lUyZG”}}
LONG_AUTHORIZATION_CODE was correctly returned but now the final step fails.
Feels slightly overcomplicated?