My application uses Facebook's Graph API to pull user's information via /me, /wall, and so forth.
Sometimes users run into the error:
"error": {
"message": "Error validating application.",
"type": "OAuthException",
"code": 190
}
I can't find any reasons why this might be triggered as:
- Access token is valid, never-expires, and is associated to my application.
- I got the permissions to do the API calls
- API calls works fine afterward
In this condition, what might cause this?