1
function generateAppRequest() {
try{
$app_id = '';
$app_secret = '';
$token_url = "https://graph.facebook.com/oauth/access_token?" .
"client_id=" . $app_id .
"&client_secret=" . $app_secret .
"&grant_type=client_credentials";
$app_access_token = file_get_contents($token_url);
$user_id ='';
$apprequest_url ="https://graph.facebook.com/" .
$user_id .
"/apprequests?message=''" .
"&data=''&" .
$app_access_token . "&method=post";
$result = file_get_contents($apprequest_url);
echo("App Request sent?", $result);
}
catch(Exception $e){
echo 'Message: ' .$e->getMessage();
}
}
上面的代碼爲應用產生的請求不起作用。該應用程序不顯示任何內容。事件不會顯示異常。我運行在Heroku平臺使用PHP應用生成的請求不工作
好運檢查'php_error.log'有關錯誤的信息。 –
您還應該嘗試var_dump像'$ app_access_token'這樣的值來查看在執行腳本 – darkheir
thinks buddies期間它的值是什麼。app_id和所有參數需要用引號引起來。 –