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 プラットフォームでアプリを実行しています

4

1 に答える 1