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'm calling

https://graph.facebook.com/{the id of one of my app's actions}

and getting the following response body:

{
  "error": {
    "message": "(#100) User must be on whitelist", 
    "type": "OAuthException", 
    "code": 100
  }
}

I'm an admin on the app in question. Anyone have any idea what this error means?

share|improve this question
Did this ever get solved? I'm having the same issue. – Brett Aug 8 '12 at 11:51
@Brett Yeah, I got it and fixed it in the way, I answered. Please check, if u still have that problem – Prashant Singh Aug 20 '12 at 10:34

2 Answers

I got this error today and the problem was that some of the fields were missing. So, do check your URL, where you are sending the request.

Like in my case I had to make a request to

https://graph.facebook.com/userID/myAppName/

Instead, I was making request to

https://graph.facebook.com//myAppName/

That should fix your problem as it did mine :D

share|improve this answer
Thanks Prashant, and sorry for never accepting. Our project actually moved around this another way and it would take me hours to go back, find the code, reproduce the issue, and try your fix. The takeaway for me: turn on email notifications so I find out right away when someone answers my question! – Christian Brink Jan 26 at 18:15
Not an issue :) – Prashant Singh Jan 27 at 12:22

I had this problem too and while I'm not positive what I did to fix it, I think it was linking the action to an objet (the 'Connected object type' form field) that did it.

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.