Jason
Jason

Reputation: 848

What are the possible causes for Facebook's "Error validating application"?

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:

In this condition, what might cause this?

Upvotes: 5

Views: 2107

Answers (1)

Igy
Igy

Reputation: 43816

Assuming you're receiving this error only for a small percentage of requests, you shouldn't need to do anything - the error happens when the provided access token is being checked for validity and the app's details can't be verified - usually an intermittent problem affecting only a tiny percentage of requests (unless you're forgetting to include the app ID in your SDK initialisation, in which case check that first)

Upvotes: 1

Related Questions