string(331) "未使用 Legacy People API

问题描述

当我尝试通过 Google Api 注册时出现此错误

string(331) "Legacy People API 之前未在项目 ******* 中使用或已禁用。通过访问 https://console.developers.google.com/apis/api/legacypeople.googleapis.com/overview?project=******** 启用它,然后重试。如果您最近启用了此 API,等待几分钟,让操作传播到我们的系统并重试。”

当我去那个网址时,我收到了

加载失败。 加载 /apis/api/legacypeople.googleapis.com/overview?project=******&dcccrf=1 时出错。请重试。

我在 /vendor/league/oauth2-google/src/Provider 中的 google.PHP 代码

<?PHP

namespace League\OAuth2\Client\Provider;

use League\OAuth2\Client\Exception\HostedDomainException;
use League\OAuth2\Client\Provider\Exception\IdentityProviderException;
use League\OAuth2\Client\Token\Accesstoken;
use League\OAuth2\Client\Tool\BearerAuthorizationTrait;
use Psr\Http\Message\ResponseInterface;

class Google extends AbstractProvider
{
    use BearerAuthorizationTrait;

    const ACCESS_TOKEN_RESOURCE_OWNER_ID = 'id';

    /**
     * @var string If set,this will be sent to google as the "access_type" parameter.
     * @link https://developers.google.com/accounts/docs/OAuth2WebServer#offline
     */
    protected $accesstype;

    /**
     * @var string If set,this will be sent to google as the "hd" parameter.
     * @link https://developers.google.com/accounts/docs/OAuth2Login#hd-param
     */
    protected $hostedDomain;

    /**
     * @var array Default fields to be requested from the user profile.
     * @link https://developers.google.com/+/web/api/rest/latest/people
     */
    protected $defaultUserFields = [
        'id','name(familyName,givenname)','displayName','emails/value','image/url',];
    /**
     * @var array Additional fields to be requested from the user profile.
     *            If set,these values will be included with the defaults.
     */
    protected $userFields = [];

    /**
     * Use OpenID Connect endpoints for getting the user info/resource owner
     * @var bool
     */
    protected $uSEOidcMode = false;

    public function getBaseAuthorizationUrl()
    {
        return 'https://accounts.google.com/o/oauth2/auth';
    }

    public function getBaseAccesstokenUrl(array $params)
    {
        return 'https://www.googleapis.com/oauth2/v4/token';
    }

    public function getResourceOwnerDetailsUrl(Accesstoken $token)
    {
        if ($this->uSEOidcMode) {
            // OIDC endpoints can be found https://accounts.google.com/.well-kNown/openid-configuration
            return 'https://www.googleapis.com/oauth2/v3/userinfo';
        }
        // fields that are required based on other configuration options
        $configurationUserFields = [];
        if (isset($this->hostedDomain)) {
            $configurationUserFields[] = 'domain';
        }
        $fields = array_merge($this->defaultUserFields,$this->userFields,$configurationUserFields);
        return 'https://www.googleapis.com/plus/v1/people/me?' . http_build_query([
            'fields' => implode(',',$fields),'alt'    => 'json',]);
    }

    protected function getAuthorizationParameters(array $options)
    {
        $params = array_merge(
            parent::getAuthorizationParameters($options),array_filter([
                'hd'          => $this->hostedDomain,'access_type' => $this->accesstype,// if the user is logged in with more than one account ask which one to use for the login!
                'authuser'    => '-1'
            ])
        );

        return $params;
    }

    protected function getDefaultScopes()
    {
        return [
            'email','openid','profile',];
    }

    protected function getScopeSeparator()
    {
        return ' ';
    }

    protected function checkResponse(ResponseInterface $response,$data)
    {
        if (!empty($data['error'])) {
            $code  = 0;
            $error = $data['error'];

            if (is_array($error)) {
                $code  = $error['code'];
                $error = $error['message'];
            }

            throw new IdentityProviderException($error,$code,$data);
        }
    }

    protected function createResourceOwner(array $response,Accesstoken $token)
    {
        $user = new GoogleUser($response);
        // Validate hosted domain incase the user edited the initial authorization code grant request
        if ($this->hostedDomain === '*') {
            if (empty($user->getHostedDomain())) {
                throw HostedDomainException::notMatchingDomain($this->hostedDomain);
            }
        } elseif (!empty($this->hostedDomain) && $this->hostedDomain !== $user->getHostedDomain()) {
            throw HostedDomainException::notMatchingDomain($this->hostedDomain);
        }

        return $user;
    }
}

如何解决这个问题?

解决方法

Legacy People API 之前未在项目 ******* 中使用或已禁用。通过访问 https://console.developers.google.com/apis/api/legacypeople.googleapis.com/overview?project=********

启用它

如错误消息所述,您尚未在项目中启用 people api,并且您已包含 emailprofile,并且正在尝试请求有关用户的个人资料。

return 'https://www.googleapis.com/plus/v1/people/me?' . http_build_query([
        'fields' => implode(',',$fields),'alt'    => 'json',

您需要先启用我们项目中的 people api,然后才能请求数据。点击链接并按照以下说明进行操作。

转到 Google developer console 点击左侧的库。然后搜索您要使用的 API 并单击启用按钮

enter image description here

等待几分钟,然后再次运行您的代码。然后你就可以向 people api 发出请求了。

return 'https://www.googleapis.com/plus/v1/people/me?' . http_build_query([
        'fields' => implode(',

旧端点:

我还建议您将端点更新为新的 people.get 端点

https://people.googleapis.com/v1/people/me