我已成功地用於發送和檢索來自Facebook的數據invitatin使用Facebook的圖形API朋友邀請
FB.ui({
method: 'apprequests',
to: sendto,
message: 'Win Mega Prizes!',
title: 'Enter in this contest!'
},
function (response) {
if (response && response.request_ids) {
var requests = response.request_ids.join(',');
alert(requests);
window.location.href = "http://www.rmyserver/index.php?invitations="+requests+"&contest_id="+c_id+"&page_id="+page_id+"&user="+from+"&g_id="+g_id+"&sendto="+sendto+"&single=1";
} else {
alert('canceled');
}
PHP
foreach($requests as $request_id) {
// Get the request details using Graph API
echo $request_content = json_decode(file_get_contents("https://graph.facebook.com/$request_id?$app_token"), TRUE);
但我想使用單用戶應用的請求,按照文檔我需要使用TO:
提交,但這不起作用,請求發送以及我得到邀請ID,但上面使用的PHP代碼返回false。 我思念的東西
window.location.href = 「HTTP://www.rmyserver/index.php邀請=」 +請求; 我正在重定向用戶請求id – Shahid