vote up 1 vote down star
1

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?

flag

4 Answers

vote up 0 vote down

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.

link|flag
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. – fandelost Jun 16 at 15:05
vote up 0 vote down

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.

link|flag
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/… – fandelost Jun 19 at 0:04
vote up 0 vote down

Hi fandelost,

what you did for your client and using photos.getAlbums and photos.get, is what I want to create for my client.

I am 1-day old learning Facebook connect as of this post and will appreciate your guidance on how to use JS API to show my client's FB photos in his site.

link|flag
Sorry for the late response, I've answered my own question. Hopefully it can put you on the right direction, but I don't have much experience with the FB JS API since I used PHP to communicate with Facebook. – fandelost Oct 17 at 17:42
No worries. I managed to solve my JS issue and now I am trying out the PHP method to get the albums. Like you I am facing issue with the session. Appreciate if you could share your code how you get the offline access and photo albums from facebook. – simonth Nov 10 at 2:33
vote up 0 vote down check

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.

link|flag

Your Answer

Get an OpenID
or

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