我正在尝试构建一个 Facebook 应用程序,我需要在其中提取不喜欢某个页面的朋友的 id。
到目前为止,我已经使用下面的函数提取了我所有的朋友 ID。
我需要生成一个代码来构建另一个 API,该 API 使用我朋友的 id 来获得他们的喜欢..
function loadFriends()
{
//get array of friends
FB.api('/me/friends', function(response) {
console.log(response);
var testdiv = document.getElementById("test");
for(i=0;i<response.data.length;i++)
{
testdiv.innerHTML += response.data[i].id + '<br/>' ;
}
});
}
我需要得到类似的东西:
FB.api('/response.data[i].id/likes', function(response) {
我该怎么做?