我需要知道,在我的应用中,用户的 10 位朋友是否喜欢我的 Facebook 页面。我也无法通过以下方式访问朋友
FB.api('/me/friends?access_token=<?php $this->access_token; ?>',
function(result){
console.log(result);
})
如何在特定页面中获得所有朋友的喜欢?
我需要知道,在我的应用中,用户的 10 位朋友是否喜欢我的 Facebook 页面。我也无法通过以下方式访问朋友
FB.api('/me/friends?access_token=<?php $this->access_token; ?>',
function(result){
console.log(result);
})
如何在特定页面中获得所有朋友的喜欢?
要查找喜欢某个页面的朋友列表,您只能通过 FQL 获取。您需要确保您的访问令牌具有friends_likes
权限。
您可以修改代码以获取喜欢您页面的用户朋友列表,如下所示:
FB.api('/fql?q=<?php urlencode(
"SELECT uid FROM page_fan WHERE page_id={$your_page_id} ".
"AND uid IN (SELECT uid2 FROM friend WHERE uid1 = me())"
);?>&access_token=<?php echo $this->access_token; ?>',
最后,我的最终代码是:
FB.api('/me/friends?access_token=<?php echo $this->access_token; ?>',
function(response){
i=0;
for(i=0; i<response.data.length; i++) {
searchForLikes(response.data[i].id);
}
if(friends_like>=<?php echo FRIENDS_LIKE; ?> && step<3){
stepReach(3, friendsNum, 80);
$.post("/default/index/next-step", { userId: '<?php echo $this->user->getId(); ?>' });
}
});
我因此使用 searchForLikes 函数来制作我的代码:3