如何在Facebook TD Friend Selector中保存好友ID

时间:2011-07-28 06:44:51

标签: php facebook selector friend

我使用了来自GitHub的Facebook Friend Selector脚本:

  

http://playground.thesedays.com/tdfriendselector/

它完美无缺。但我不知道如何在PHP中保存选定的输出朋友,因为README文件文档很差。如果有人可以提供帮助,我会非常感激。

1 个答案:

答案 0 :(得分:1)

创建实例时,添加callbackSumbit选项以及要用于它的函数。

例如:

//the function we want to use as event listener on submission
alertFriends = function(selectedFriendIds) {
    //whatever you want to do with the array of FB Friend Ids
    alert('I got them');
}

mySelector  = TDFriendSelector.newInstance({callbackSubmit  : alertFriends});