0

codeigniter で google plus api を使用しています。モーメントを挿入しようとすると、認証エラーが表示されますが、G+ 情報を取得できます$this->plus->people->get('me')

私はこれを CodeIgniter Library Construct に持っています:

    $CI =& get_instance();
    $CI->config->load('googleplus');

    require APPPATH .'libraries/google-api-php-client/src/Google_Client.php';
    require APPPATH .'libraries/google-api-php-client/src/contrib/Google_PlusService.php';
    $cache_path = $CI->config->item('cache_path');
    $GLOBALS['apiConfig']['ioFileCache_directory'] = ($cache_path == '') ? APPPATH .'cache/' : $cache_path;

    $this->client_id = $CI->config->item('client_id', 'googleplus');
    $this->client_secret = $CI->config->item('client_secret', 'googleplus');
    $this->redirect_uri = $CI->config->item('redirect_uri', 'googleplus');

    $this->client = new Google_Client();
    $this->client->setApplicationName($CI->config->item('application_name', 'googleplus'));
    $this->client->setClientId($this->client_id);
    $this->client->setClientSecret($this->client_secret);
    $this->client->setRedirectUri($this->redirect_uri);
    $this->client->setDeveloperKey($CI->config->item('api_key', 'googleplus'));
    $this->client->setAccessType("offline");
    $this->client->setScopes(array('https://www.googleapis.com/auth/plus.me','https://www.googleapis.com/auth/plus.login'));
    $this->client-> setApprovalPrompt("force");
    $this->plus = new Google_PlusService($this->client); 

そして、ここに瞬間を挿入するために私が行っているサンプルがあります。

    $target = new Google_ItemScope();
    $target->url = 'https://developers.google.com/+/plugins/snippet/examples/thing';

    $moment = new Google_Moment();
    $moment->type = "http://schemas.google.com/AddActivity";
    $moment->target = $target;

    $this->plus->moments->insert('me', 'vault', $moment);

モーメントを挿入しようとすると、このエラーが発生します。

致命的なエラー: キャッチされない例外 'Google_ServiceException' とメッセージ 'POST の呼び出し中にエラーが発生しましたhttps://www.googleapis.com/plus/v1/people/me/moments/vault?key= * ** * **: (401) Unauthorized' in /application/libraries/google-api-php-client/src/io/Google_REST.php:66 スタック トレース: #0 /application/libraries/google-api-php-client/src/io /Google_REST.php(36): Google_REST::decodeHttpResponse(Object(Google_HttpRequest)) #1 /application/libraries/google-api-php-client/src/service/Google_ServiceResource.php(186): Google_REST::execute(Object (Google_HttpRequest)) #2 /application/libraries/google-api-php-client/src/contrib/Google_PlusService.php(167): Google_ServiceResource->__call('insert', Array) #3 /application/libraries/googleplus. php(290): Google_MomentsServiceResource->insert( /application/libraries/google-api-php-client/src/io/Google_REST.php の 66 行目

何が間違っているのかわかりません。コードを提案してください。ありがとう :)

4

1 に答える 1