次のコードを使用して、アプリケーションからユーザーにリクエストを送信しています。すべて問題ありませんでしたが、突然動作しなくなり、次のエラーが表示されます: OAuthException: (#2) Failed to create any app request
$config = array();
$config['appId'] = $this->app_id;
$config['secret'] = $this->app_secret;
$facebook = new Facebook($config);
$url = "https://graph.facebook.com/oauth/access_token?client_id={$this->app_id}&client_secret={$this->app_secret}&grant_type=client_credentials";
$token = file_get_contents($url);
$request = $facebook->api('/'.$id.'/apprequests', 'POST', array(
'message' => $text,
'access_token' => $token
)
);
トークンは有効であるように見えますが、他にどこに問題があるのかわかりません。