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 wish to create an application which me and my friends would subscribe to and which in turn can monitor a count of items in the news feed using the required permissions (kind of a social network statistics).

I read the developer documentation, but I couldn't find out if it's possible. Subscribing to my application (and allowing the permissions) is a one-time process for my friends. From then on, can my application read the fields mentioned in Graph API for the subscribed users at any time (without the user's involvement)?

share|improve this question

2 Answers

No.

Facebook used to have the "offline_access" permission which would let applications have an access token that does not expire.

Not a while ago though Facebook deprecated this permission as stated in Removal of offline_access permission.

The longest (that I'm aware of) that a token is valid for is 60 days. If you want to extend that time frame you'll have to get the user to interact with your application.

share|improve this answer
Will this 60 day token work for all permissions(including extended ones)? So is it possible to automate the news feeds counting process via an app(once my friends approve this app) till the token is alive? – Vineet Deoraj Apr 5 '12 at 20:46
The access token you get is the result of the user being authenticated and authorizing your app, when you send him for this process you ask for a list of permissions (if any), the user then grant you these permissions (or part of them) and you get the token along with the expiration date. Till then, that access token is valid for all the permissions the user granted your app. Authentication doc: developers.facebook.com/docs/authentication – Nitzan Tomer Apr 5 '12 at 21:00

You might be interested in using the Real-Time Updates API from Facebook. Using this, you will no longer have to continuously "poll" the Graph API. Rather, Facebook will send the updates to your server.

Here are some sample implementations of the API, https://github.com/facebook/real-time/tree/master/samples.

share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 '12 at 21:48

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.