我想在facebook中获取所有申请请求。我有以下代码......似乎它返回一个空数组。 为什么那样..是否有另一种方法使用javascript来检索我的所有应用程序请求?
function Getrequests2()
{
FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
// the user is logged in and connected to your
// app, and response.authResponse supplies
// the user's ID, a valid access token, a signed
// request, and the time the access token
// and signed request each expire
var access_token = myaccesstoken;
FB.api('/me/apprequests/?access_token='+access_token, function(user)
{
if (user) {
alert(access_token);console.log(user);
}
}
)
} else if (response.status === 'not_authorized') {
// the user is logged in to Facebook,
//but not connected to the app
} else {
// the user isn't even logged in to Facebook.
}
});
}
答案 0 :(得分:0)
此“未知路径组件:/ access_token = myaccesstoken”错误消息表示您尝试访问不存在的内容。检查文档中存在哪些路径。
如果您想获取有关该用户的信息,请替换此
'/ me / apprequests / access_token ='to'/ me?access_token ='
在这种情况下,您可以使用access_token访问/ me信息。