我正在使用以下代码从应用程序向用户发送请求。一切都很好,但突然停止工作,我收到一个错误: 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
)
);
看起来令牌是有效的,我不知道还有哪里可能是问题所在。