我目前正在使用JS Facebook API(目前尚未公開,可能相關)的應用程序,我們應該是2人使用該應用程序。「fields = installed」回答我所有的朋友
我想我所有的朋友,其使用的應用程序,但是當我做:
FB.api('me/friends?fields=installed,name,id',function(response){
console.log(response);
});
或:
FB.api('me/friends', { fields: 'id, installed'},function(response){
console.log(response);
});
這回我所有的朋友。 你知道爲什麼嗎?
謝謝你的幫助!
謝謝!它似乎很明顯。 – Cohars