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 have a facebook app for which user grant me permission to access user_subscriptions to make my app able to access https://graph.facebook.com/me/subscribedto?access_token=#

It let me access all the persons app user is subscribed to.

I use this data let my app know that the user is subscribed to a particular person and let him/her access the site furter, I call this process a Subscribe Gate.

But I'm running into a problem now, that suppose a user is subscribed to about 1K or even 5-10K, then in such case think about the amount of data will be transferred and the load on the php server, facebook will consider my app spam and might block me

I want to know is there a way through which I could search for the person whom user is subscribed to instead of asking for all the persons user is subscribed to and check manually by php script

share|improve this question
Hello....posting a new question with just a link to an earlier one is not the way to get attention for your posts. Also, be patient, your question has only been on the site for a couple of hours. – Kev Aug 12 '12 at 14:02

1 Answer

up vote 0 down vote accepted

If I understand correctly, you want to know if a particular person is subscribed to the user of the app. Supposing the person in question's user id is XXXXXXXX, do...

via Graph:

https://graph.facebook.com/fql?q=select subscriber_id from subscription where subscribed_id = me()  and subscriber_id='XXXXXXXX'

or via FQL:

select subscriber_id from subscription where subscribed_id = me()  and subscriber_id='XXXXXXXX'

-

Note: while in theory the above solutions should work equally well, when I tested the Graph-based solution with the Facebook Graph explorer, the query processed for an unusually long time. FQL worked fine.

Update: To find out if the user of the app is subscribed to a particular person:

select subscriber_id from subscription where subscribed_id = 'XXXXXXXXX' and subscriber_id = me()
share|improve this answer
both the method gave empty data array even if the user is subscribed – Aditya Choudhary Aug 12 '12 at 16:55
also will it detect the user subscription if the user is friend of the subscribed? – Aditya Choudhary Aug 12 '12 at 16:56
In my test data was empty only if person was not subscribed to the app user. Did you chose the proper permissions first? It will detect non-friends who are subscribed. – Gil Birman Aug 12 '12 at 16:59
Got it! Actually the query must be select subscriber_id from subscription where subscribed_id = 'XXXX_USER_ID_XXXX' and subscriber_id = me() – Aditya Choudhary Aug 12 '12 at 17:12
You're too close but this FQL query fail when the person to subscribe is a friend of the person who's subscribing – Aditya Choudhary Aug 12 '12 at 17:13
show 3 more comments

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.