当我使用Graph API访问用户的apprequests时,/me/apprequests有时会返回null "from“属性,如下所示。
{
"data" : [
{
"id" : "xxxxxx_xxxxx",
"to" : {
"name":"xxxxx xxxxx",
"id":"xxxxxx",
},
"from" : null
}
]
}某些用户数据会发生这种情况,但并不总是如此。为什么会发生这种情况?所有apprequests的创建方式相同,使用Fb.ui({method:'apprequests',...});
发布于 2012-01-09 19:48:14
我已经创建了一个bug报告,并收到了如下答案。
这是由于对发送请求的用户的隐私检查,在某些情况下(用户停用其帐户,用户删除您的应用程序等),您将无法读取有关请求发送者的任何内容,包括ID。
http://developers.facebook.com/bugs/337541152923169?browse=search_4f0ad280300830331054933
https://stackoverflow.com/questions/8634812
复制相似问题