can i use fbml without fb connect?
Can i use fbml multiple friend selector tag without using F connect. I mean i have the offline sessi开发者_StackOverflow社区on keys for users.
Would like to show multiple friends selector form by using the session keys i have. But i have no idea how to set the session.
Is there any way??
You can use the set_user method from Facebook API
Here's a sample using the php library
$facebook = new Facebook(API_KEY, API_SECRET);
$facebook->set_user($user_id, $session_key);
精彩评论