我使用FB.api
Javascript API 访问当前用户 ( me
) 的好友列表,这些用户也使用该应用程序:
FB.api('/me?fields=name,friends.fields(installed,name),birthday,gender,location,email', function(res) {...
我大约一周前设置了它,它对所有用户都运行良好。它让我列出了所有朋友的列表,但那些使用该应用程序的人,还有一个附加参数,其值设置为 true ( "installed" : true
)
现在我看到由于某种神秘的原因,这个参数installed
不再出现了!我没有对代码进行任何更改。知道为什么这是再次获得它的正确方法吗?