Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am loading in some graph data and want to check for error so I can hide the element and avoid broken code on the page.

If there is a problem Facebook responds with something like this:

{
   "error": {
      "type": "OAuthException",
      "message": "(#803) Some of the aliases you requested do not exist: asd"
   }
}

How do I check for that?

share|improve this question

1 Answer

up vote 1 down vote accepted

If that's the JSON object you're getting back, in your code just check if it contains an 'error' object. At that point you should be able to see the error details.

If you happen to be using the PHP SDK you can wrap calls to the api method within a try/catch block and deal with errors that way.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.