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 built an app on Facebook.

  • To block someone:

    • Click the account menu at the top right of any Facebook page and choose Privacy Settings.
    • Scroll to the Blocked People and Apps section and click Manage Blocking.
    • Enter the name or email address of the person you want to block and click Block. People will not be notified when you block them.
  • My issue is:

    • How can I check the blocked status between of two Facebook's users using Facebook API on my app? Or any ways to get blocked list from current user.
share|improve this question

1 Answer

page_blocked_user

An FQL table that can be used to return a list of a users that are blocked from a Facebook Page.

The Page Graph API object has an equivalent blocked connection that can also be used to block or unblock users.

https://developers.facebook.com/docs/reference/fql/page_blocked_user/

share|improve this answer
Thanks for your answer, but my app did not create a Facebook Page. So I can not use FQL "page_blocked_user" I used to try your way before, but it return empty. Thanks – ronnie Dec 7 '12 at 7:10
What do u use now? – Sreekesh Okky Dec 7 '12 at 7:26

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.