I\'m trying to retrieve data using the new graph API, however the token I\'m retriving from OAuth doesn\'t appear to be working.
The call I\'m making is as follows;
Make sure you have url encoded your query parameters, your one should actually be:
000000000000%7CAaaAaaAaaAAaAaaaaAaaAa0aaAA
Note: also the type parameter seems to be required, without it you also get 500 error with message:
{
"error": {
"type": "OAuthException",
"message": "Error validating verification code."
}
}
rather than the message you get with other missing parameters. Cannot see that mentioned in the documentation.