tags:

views:

52

answers:

1

I'm current developing web-app that allows a user to associate their account with their Facebook account.

I have no trouble getting the users Facebook id/session_key and extended permissions.

What I am having trouble is caching the users data in a single call.

Their documentation for User.getInfo allows multiple uid's to be passed to the API and the basic info returned but I need additional details but it doesn't state mulltiple sessions_keys are allowed.

Is there an alternative or will I just have to take the multiple web request hit?

Cheers Tony

+1  A: 

I tried to use the Batch.run for Facebook but it turns out you cannot pass commands that require different sessions keys.

So I have to take the multiple hits.

TWith2Sugars