/**
* This function allows you to overrule the automatically generated scopes,
* so that you can ask for more or less permission in the auth flow
* Set this before you call authenticate() though!
* @param array $scopes, ie: array('https://www.googleapis.com/auth/plus.me', 'https://www.googleapis.com/auth/moderator')
*/
public function setScopes($scopes) {
$this->scopes = is_string($scopes) ? explode(" ", $scopes) : $scopes;
}
上記のコードは google/Client.php からのものです。
質問:
コメントで、これはどういう意味ですか:
https://www.googleapis.com/auth/plus.me
?スコープを設定しない場合、デフォルトのスコープは何ですか?