function sendRequest(c_id,page_id,user,g_id) {
// alert(c_id);
// alert(page_id);
FB.ui({
method: 'apprequests',
message: 'Custom messae!',
title: 'Enter in this contest!',
data: +id+','+puid+','+n_id,
},
function (response) {
if (response && response.request_ids) {
var requests = response.request_ids.join(',');
window.location.href = "mysiteurlhere";
} else {
alert('canceled');
}
});
return false;
}
以上代码即使在添加TO字段后也适用于多用户但不适用于单个用户, 我更改了代码并用于字段
方法:'apprequests',
发送至:sendto,
sendto
有我要发送应用请求的用户的uid,我确实收到了邀请ID但是
$request_content = json_decode(file_get_contents("https://graph.facebook.com/$request_id?$app_token"), TRUE);
// returns false when i access the url
我错过了多用户正在尽可能顺利地工作。