0
 /**
   * 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,

问题:

  1. 在评论中,这是什么意思:https://www.googleapis.com/auth/plus.me

  2. 如果我不设置范围,默认范围是什么?

4

1 回答 1

0

在评论中,这是什么意思:https ://www.googleapis.com/auth/plus.me ?

该范围特定于拨打电话的用户,并说给我所有通用的 google plus 信息(姓名资料图片等)。

如果我不设置范围,默认范围是多少?

没有默认范围,如果你没有指定它会抛出一个错误。

于 2013-11-06T19:02:59.793 回答