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 creating a web application using php. I have a closed group in facebook. When a user login to my application I am showing them a page. I want to stream data grom my facebook group and display in that page. Since this is a closed group I am not able to stream data from that using php SDK. I am using the following code.

This code workes if the group is public.

$facebook = new Facebook(array('appId' => FB_APP_ID, 'secret' => FB_SECRET_KEY, 'cookie' => true,));
return $facebook->api('/' . FB_GROUP_ID . '/feed');

I think that we have to pass access token with extended permission to get that data. But how to generate that token without user intevention ?

Any Ideas?

share|improve this question
I am thinking of generating a long lived access token manually and storing it in database. Any thoughts? – Pramod Sivadas Jul 31 '12 at 6:13
Well, that will work – as long as the user you acquired the token with does not change their password; then you will have to go through this process again. Could be a little more convenient if you had a little admin interface for that, where the user can just connect to your app, and have it get the access token programmatically and store it to your config. – CBroe Jul 31 '12 at 7:29
But when the token expires we have to update the token manually. That is a problem I think. Also now facebook offline access is deprecated. So the access token will expire after 60 days :( – Pramod Sivadas Jul 31 '12 at 7:33
Yeah, right – there does not seem to be a thing as non-expiring page access tokens for groups yet. So that’d be one more reason for having an admin interface where a new access token can be acquired and saved to the config quickly. And maybe you want to set up a cronjob or something that notifies the admin a few days before the token expires, so he can set a new one in time. – CBroe Jul 31 '12 at 7:44

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.