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 developing a site for a client who already have the photos of his products on Facebook, and he wants the same albums to be replicated over his site. I was already using Facebook Connect, so I dropped a combination of photos.getAlbums and photos.get to dynamically make the galleries.

So far so good, but then I realized that if there's no user logged trough FBC, no session is created and the API becomes unusable, even for content that is publicly available. I obviously want to show the albums to everyone and not just the people who connect their accounts.

Is this how all functions in the Facebook API work? What's the best (easier to implement) workaround for this situation?

share|improve this question

4 Answers

up vote 10 down vote accepted

As of September 2010, you can now authenticate just as an application, with no associated user. See http://developers.facebook.com/docs/authentication/ for details. Or you can run this example code to get an access token:

curl -F grant_type=client_credentials \
 -F client_id=your_app_id \
 -F client_secret=your_app_secret \
 https://graph.facebook.com/oauth/access_token
share|improve this answer
Thanks! This is now the correct answer. – lima May 17 '11 at 1:29

For the record, I managed to solve this situation by developing a small backend that requires the client to login to Facebook once and give offline_access extended permission to the FB app, so I can save his session key and use it to authenticate the Facebook API client every time I need to use FQL to get non-public content.

One could obviously add some caching in the middle to avoid unnecessary requests to Facebook, but it's been working fine for months now without hitting any limits that I know of.

share|improve this answer
Great answer- this seems like the most up to date way to do this. Out of curiousity - how did you authenticate the user? I'm currently using the JS SDK on the front end, however for my App (CMS) I want to publish posts to a facebook page when an editor publishes a post to their website. (Then store PostId for likes/comments/etc) Ideally, I would store the username/pw for a fb page admin and use graph api to auth invisibly. Any examples of this? Thanks! – Jason Jul 30 '10 at 19:53
As lacker says, the FB auth scheme changed. Follow the link and example in his answer to understand it. I'm marking that one as the correct. – lima May 17 '11 at 1:29

That doesn't make sense to me - I have a (relatively simple) app that renders in facebook even if the user has never logged into facebook before (in which case it displays demo data).

When using the facebook PHP library, I just do this:

$facebook = new Facebook($api_key, $secret);

No session id required - but, obviously, api functions that depend on information about the user aren't going to work.

You can also look into an "infinite session" for your app - you could create an infinite session key for yourself and use that session to access the API.

share|improve this answer
Thanks, I can obviously render my app (in this case is just backend code) without a user session, but I can't use any of the API functions that would let me pull content from the albums. The "infinite session" idea sounded good, but it's partially deprecated: wiki.developers.facebook.com/index.php/… – lima Jun 19 '09 at 0:04

You are correct: you will be unable to use the API functions without having a user authenticated with Facebook.

You should copy/download all the photos to the site rather than pulling them from Facebook. Is there a particular reason you want to pull from Facebook, other than the fact that the photos are already there? Generally, you only use the API if you are actually integrating some functionality. Pulling from FB instead of having them on the site itself is a hugely inefficient way of serving the photos.

share|improve this answer
Thanks for the answer, I guess I thought it would be easier if the client didn't have to upload the same content all over again, and I didn't have to create another backend module. – lima Jun 16 '09 at 15:05

protected by Gabe Mar 24 '11 at 6:01

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.