我使用javascript SDK向朋友发送一些邀请,我需要获取朋友ID。这是我的代码的一部分:
function RequestFriendship() {
FB.getLoginStatus(function (response) {
if (response.session && response.perms != null && response.perms.indexOf('user_about_me') != -1) {
Request();
}
else {
FB.ui({
method: 'auth.login',
perms: 'user_about_me,publish_stream',
display: 'iframe'
}, function (response3) {
if (response3 != null && response3.perms != null && response3.perms.indexOf('user_about_me') != -1) {
Request();
}
else {
alert('No invitations sent.');
}
});
}
});
我的Request方法是:
function Request() {
FB.ui({ method: 'apprequests', message: 'Mensaje Publicidad', data: '', title: 'Titulo publicidad' },
function (response) {
if (response && response.request_ids) {
var ids = response.request_ids;
FB.api("/me/apprequests/?request_ids=" + ids[0], function (response2) {
alert(JSON.stringify(response2, replacer));
});
}
});
}
但是每次运行它我都会在FB.api中找到一个空数据(“/ me / apprequests /?request_ids =”+ ids [0]。我不知道我做错了什么,我觉得我工作得很好不久之前,但现在它不是。这是一个权限问题吗?我认为user_about_me足以要求apprequest但不再确定。任何帮助?Thanx
答案 0 :(得分:1)
我自己找到了答案。只需使用:
if (response && response.request_ids) {
var ids = response.request_ids;
var _batch = [];
for (var i = 0; i < ids.length; i++) {
_batch.push({ "method": "get", "relative_url": ids[i] });
}
if (_batch.length > 0) {
FB.api('/', 'POST', { batch: _batch }, function (res) {
// var obj = eval('(' + res + ')');
for (var j = 0; j < res.length; j++) {
body = res[j].body;
var myObject = eval('(' + body + ')');
friendID = myObject.to.id;
// here you have every friendID
}
});
}
}
:)
答案 1 :(得分:0)
您实际上不需要创建批量请求。您可以在根上使用ids参数,并直接从对话框中返回request_ids
值:
FB.api("/?ids=" + response.request_ids, callback);