解决方案编辑: 原来您不能使用 PHP SDK 返回正确的应用程序令牌,也不能点击开发人员网站应用程序部分中的 OpenGraph 选项,单击“获取代码”并从那里获取应用程序访问令牌。 . 你必须这样做:
$token_url = 'https://graph.facebook.com/oauth/access_token?client_id=' . $fbConfig['appId'] . '&client_secret=' . $fbConfig['appSecret'] . '&grant_type=client_credentials';
$accessToken = explode('=',file_get_contents($token_url));
$accessToken = $accessToken[1];
原始问题: 使用 PHP SDK,我一直在尝试注册我的成就,但没有成功。我不断收到以下错误:“必须使用应用程序 access_token 调用此方法。”
但是,当我将我正在使用的令牌输入到 opengraph (https://graph.facebook.com/app?access_token=ACCESS_TOKEN) 时,我会正确获取我的应用程序信息。
以下是我迄今为止在注册成就时尝试过的方法:
$param = array(
'access_token' => $accessToken,
'achievement' => 'http://domain.com/path/to/my/achievement/page',
'display_order' => $achievements['achievementWeight']
);
$achievement = $fb->api('/'.$this->CI->config->item('app_id').'/achievements', 'POST', $param);
$superCurl = "curl -F 'achievement=" . $achieveUrl . "&access_token=" . $accessToken . "' https://graph.facebook.com/" . $appId . "/achievements";
exec($superCurl,$result);
$url = 'https://graph.facebook.com/' . $this->CI->config->item('app_id') . '/achievements?access_token=' . $accessToken;
$c = curl_init ($url);
curl_setopt($c, CURLOPT_HEADER, false);
curl_setopt($c, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($c, CURLOPT_POST, true);
curl_setopt($c, CURLOPT_POSTFIELDS, $param);
curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
if(curl_errno($c)){
$this->CI->firephp->log(curl_error($c));
}
$page = curl_exec ($c);
curl_close ($c);
一切都会回来说它需要一个access_token。