2

offline_access が非推奨になったことがわかっているので、そのアクセス許可なしで長期間有効なアクセス トークンを取得するにはどうすればよいか教えてもらえますか?

4

1 に答える 1

1

次の関数を base_facebook.php に追加することで、アクセス トークンを拡張できます。

// トークン値を拡張するための拡張関数。

public function getExtendedAccessToken() {

try {

    $access_token_response =
        $this->_oauthRequest(
            $this->getUrl('graph', '/oauth/access_token'),
            $params = array(    'client_id' => $this->getAppId(),
                                'client_secret' => $this->getApiSecret(),
                                'grant_type'=>'fb_exchange_token',
                                'fb_exchange_token'=>$this->getAccessToken(),
                          ));

} catch (FacebookApiException $e) {

  return false;
}

if (empty($access_token_response)) {
  return false;
}

$response_params = array();
parse_str($access_token_response, $response_params);
if (!isset($response_params['access_token'])) {
  return false;
}

return $response_params['access_token'];

}

于 2012-04-20T15:15:23.627 に答える