3

Web アプリで Google plus API を使用しています。グーグルプラスからすべての人を引き抜くことができました

私のコードは

$this->client = new Google_Client();
        $this->client->setApplicationName($CI->config->item('application_name', 'googleplus'));
        $this->client->setClientId($CI->config->item('client_id', 'googleplus'));
        $this->client->setClientSecret($CI->config->item('client_secret', 'googleplus'));
        $this->client->setRedirectUri($CI->config->item('redirect_uri', 'googleplus'));
        $this->client->setDeveloperKey($CI->config->item('api_key', 'googleplus'));

        $this->plus = new Google_PlusService($this->client);
              $this->auth2 = new Google_Oauth2Service($this->client);

$peoples = $this->plus->people->listPeople('me','visible');

ここでは、サークル内のすべての人のリストを取得しています。しかし、私は人々のメールアドレスと誕生日を知りません。どうすればそれらも入手できますか?

4

2 に答える 2