59

我正在尝试在我的网络应用程序上实施 Google plus 注册,并且我按照谷歌文档设置注册但是当我在接受权限并使用返回给我的访问令牌后尝试注册时,我所做的任何 api restcall 返回已超过未经验证使用的每日限制。继续使用需要注册错误。我已经使用 ouath 2.0 密钥注册了我的应用程序,所以我似乎没有明白我做错了什么。这是我的代码。

客户端:

const clientId = "5XXX000XX.apps.googleusercontent.com";
const apiKey = "AIzaSyCAXE5JSa36jcC*X7HV40SBcIWBiVGUTBE";
const scopes = "https://www.googleapis.com/auth/plus.login";
let accessToken = null;

function initer() {
  gapi.client.setApiKey(apiKey);
  // alert("Hello init");
  if ($("#authorize-button").length > 0) {
    $("#authorize-button").click(onLoginClick);
  }
}

function onLoginClick() {
  // $("#modalLoading").modal();
  // alert("yeah");
  gapi.auth.authorize({ client_id: clientId, scope: scopes, immediate: false }, onConnect);
}

function onConnect(authResult) {
  // alert("On connect");
  if (authResult && !authResult.error) {
    alert("Hey");
    accessToken = authResult.access_token;
    triggerLogin();
  } else {
    alert("Error");
  }
}

triggerLogin = function() {
  alert("Triggering login");
  $("#modalLoading").modal();
  $.ajax({
    url: window.config.site_root + "account/google_login",
    type: "POST",
    data: "access_token=" + accessToken,
    success: onLogin,
    error() {
      onError("Logging In", "starting your session");
    },
  });
};

onLogin = function(login) {
  alert("Login start");
  $("#modalLoading").modal("hide");
  if (login.operation) {
    location.reload();
  } else {
    alert("Register will start");
    triggerRegistration();
  }
};

triggerRegistration = function() {
  $("#modalLoading").modal();
  $.ajax({
    url: window.config.site_root + "account/google_registration",
    type: "POST",
    data: "access_token=" + accessToken,
    success: onRegistration,
    error() {
      alert("An Error");
    },
  });
};

onRegistration = function(data) {
  alert("Handling register");
  $("#modalLoading").modal("hide");
  if (data.account_exists) {
    stage.showErrorModal(
      "Account already registered",
      "There is already an account with that email address, are you sure you created an account using this login method?",
    );
  } else if (data.operation) {
    alert("Login now");
    triggerLogin();
  } else {
    alert("Error");
    onError("Registering", "creating your account");
  }
};

这是我的服务器端代码

 public function google_registration()
            {
                $access_token = (isset($_POST["access_token"]) && !empty($_POST["access_token"])) ? $_POST["access_token"] : null;


                $name = null;
                $email = null;
                $account_id = null;
                $picture = null;
                $gender = null;

                try
                {
                    if($access_token)
                    {
                        $me = file_get_contents("https://www.googleapis.com/plus/v1/people/me?access_token=".$access_token);
                        if($me)
                        {
                            $me = json_decode($me);
                            $name = $me->name.formatted;
                            $email = $me->email;
                            $account_id = $me->id;
                            $picture = $me->image;
                            $gender = ($me->gender == "female") ? 1 : 0;
                        }
                    }
                }
                catch(Exception $error)
                {
                    // let the system handle the error quietly.
                }
                return $this->service_registration("google", $name, $email, $account_id, $picture, $gender);

            }
4

15 回答 15

34

I too ran into the same error - "Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup".

I went and checked my google developer console under APIs for the project associated with the API key/ auth key, eg, https://console.developers.google.com/project/<your app id>/apiui/api. The status for Google+API was set to OFF. I turned it ON.

I then got another access token, and then tried with the new one. It worked, ie, the error was gone and I got the profile details. To cross-check if that was indeed the cause of the error, I went back to console and disabled Google+ API. But now, I get the error:

"Access Not Configured. Please use Google Developers Console to activate the API for your project."

So, I am not 100% sure that it was the turning on/off of the Google+ API in my developer console, but do ensure that this is turned on. Also, wait a few minutes after turning on, and ensure that you get a fresh token each time before trying it.

于 2014-08-13T12:47:58.553 回答
13

当您已经登录并且仍然尝试一次又一次地登录时,会发生此问题。我遇到了同样的错误,所以做了一些实验 1)我在手机上打开了网站,一切都很好。2)然后我在另一台笔记本电脑上尝试并使用不同的gmail帐户登录,它再次正常工作。3)在我的第一台笔记本电脑上,我通过单击“登录”按钮再次绑定,我遇到了同样的错误,所以我打开了 google.com,然后完全注销,然后再次尝试,这次成功了。所以我相信,问题是一次又一次地单击登录按钮而无需注销。

我不确定这是否真的是一个问题,但至少这是我发现的。我仍在尝试,尝试和尝试,如果我发现任何其他内容,我会发布。

干杯!!

于 2015-02-13T15:12:54.557 回答
12

谷歌API

确保您在此处启用了 Google+ Api。

没有它,您将收到如下错误:

"domain": "usageLimits",
"reason": "dailyLimitExceededUnreg",
"message": "Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup.",

要启用它:

1) 打开https://console.developers.google.com

2)选择你的项目(右上角)

3) 在搜索框中搜索“Google+ API”,如果尚未启用,则启用它。

于 2015-06-26T10:00:49.563 回答
11

您必须apiKey使用 URL 添加:

$curl = curl_init( 'https://www.googleapis.com/urlshortener/v1/url?key=AIza3834-Key' );
于 2016-01-28T14:40:08.310 回答
8

所以我遇到了这个问题,上述两种方法/解决方案(启用 API 访问和注销帐户)对我不起作用,因为对于 google+ 登录,您必须在 http 调用的授权标头中传递访问令牌。

以下是通过 jQuery 执行此操作的方法:

    $.ajax({
      type: "GET", 
      url: "https://www.googleapis.com/plus/v1/people/me",
      headers: {
       "Authorization":"Bearer " + {access_token},
      }
    });

看来您的问题在于您在参数中传入 access_token 的服务器端代码(这不是必需的)。

这是我对 PHP 实现的尝试:

$opts = array(
'http'=>array(
 'method'=>"GET",
 'header'=>"Authorization: Bearer ".$access_token 
 )
);

$context = stream_context_create($opts);

// Open the file using the HTTP headers set above
$file = file_get_contents('https://www.googleapis.com/plus/v1/people/me', false, $context);'
于 2015-09-04T19:57:59.527 回答
5

希望您通过 https 发送该访问令牌!可能值得考虑改用代码并在服务器端交换访问令牌,以提高安全性,如果没有别的,这里有一些关于这种方法的文档:https ://developers.google.com/+/web /signin/服务器端流程

关于您看到的问题,似乎访问令牌不好,或者没有正确通过。您能否根据 tokeninfo 端点检查您收到的访问令牌:https ://www.googleapis.com/oauth2/v1/tokeninfo?access_token= - 这应该显示有效信息。代码中没有什么特别突出,但是如果令牌被破坏,您可能会看到类似的错误。

于 2013-10-14T08:58:02.137 回答
1

我在 JavaScript 端(客户端)遇到了问题。就我而言,有必要添加API_KEYgapi.client.init()

完成我的功能:

async function initClient () {
  return new Promise((resolve, reject) => {
    const API_KEY = "YOUR_GOOGLE_API_KEY"
    const CLIENT_ID = "YOUR_GOOGLE_OAUTH2_CLIENT_ID"
    const DISCOVERY_DOCS = ['https://www.googleapis.com/discovery/v1/apis/youtube/v3/rest']
    const SCOPES = 'https://www.googleapis.com/auth/youtube.readonly'

    const initData = { apiKey: API_KEY, clientId: CLIENT_ID, discoveryDocs: DISCOVERY_DOCS, scope: SCOPES }

    gapi.client.init(initData).then(function () {
        // YOUR CODE HERE
    }, function (error) {
      reject(new Error('Reject Error: ' + error))
    })
      .catch(err => console.log('Catch Error', err))
  })
}

API_KEY并且CLIENT_ID可以从这里获取(Google Cloud Platform -> APIs & Services -> Credentials -> Credentials [Tab])

于 2018-12-20T01:09:11.080 回答
1

我遇到了同样的问题,解决方法是:set APIKEY

于 2017-02-17T17:19:33.220 回答
1

access_token当他们在前一个会话期间已经登录时,我试图用来获取返回用户的姓名和图片。在遇到"unauthenticated use"错误消息后,这最终通过 PHP 中的 cURL 起作用。

//initialize provider specific params for oauth2
$access_token = <fetched from app database from last login> //remember to never expose this to users
$api_url = 'https://www.googleapis.com/plus/v1/people/me';
$headers = [
    'Authorization: Bearer '.$access_token
];

//send curl request
$curl = curl_init();
$curl_opts = [
    CURLOPT_RETURNTRANSFER => 1,
    CURLOPT_POST => 0, //GET
    CURLOPT_TIMEOUT => 30,
    CURLOPT_SSL_VERIFYPEER => 1,
    CURLOPT_SSL_VERIFYHOST => 2,
    CURLOPT_URL => $api_url,
    CURLOPT_HTTPHEADER => $headers,
];
curl_setopt_array($curl, $curl_opts);
$curl_response = json_decode(curl_exec($curl), true);
$curl_status = curl_getinfo($curl, CURLINFO_HTTP_CODE);

//parse curl response from provider into name and icon fields for my app
$name = $curl_response['displayName'];
$icon = $curl_response['image']['url'];

请注意,https://www.googleapis.com/plus/v1/people/me(通过返回用户access_token)和https://www.googleapis.com/oauth2/v4/token(通过初始登录code)返回不同字段/结构中的用户名和图片。

于 2018-10-15T07:42:47.880 回答
1

我也很绝望,最后我设法找到了解决办法。唯一的问题是添加链接到您的应用程序的正确 api 令牌,在我的情况下是浏览器令牌,并且一切正常。

示例:我想让所有事件与我的日历关联

https://www.googleapis.com/calendar/v3/calendars/ {calendar_id}/events?&key={api_key}

也许我会帮助遇到同样问题的人。

祝你好运

于 2017-11-14T14:00:28.353 回答
0

我收到以下错误:

{
 "error": {
  "errors": [
   {
    "domain": "usageLimits",
    "reason": "dailyLimitExceededUnreg",
    "message": "Daily Limit for Unauthenticated Use Exceeded. Continued use 
requires signup.",
    "extendedHelp": "https://code.google.com/apis/console"
   }
  ],
  "code": 403,
  "message": "Daily Limit for Unauthenticated Use Exceeded. Continued use 
requires signup."
 }
}

我不确定,但我认为这是在我的情况下在 Google Developers Console 的 OAuth 同意屏幕上引起的,有这条消息,

用户上限限制了在请求未经批准的敏感或受限范围时可以向您的应用授予权限的用户数量。用户上限适用于项目的整个生命周期,并且不能重置或更改。已验证的应用仍会在此页面上显示用户上限,但如果您只请求批准的敏感或受限范围,则用户上限不适用。如果您的用户看到“未验证的应用程序”屏幕,那是因为您的 OAuth 请求包含未获批准的其他范围。

我要求限制范围:

private val SCOPES: List<String> = arrayListOf(DriveScopes.DRIVE_FILE, DriveScopes.DRIVE_APPDATA, DriveScopes.DRIVE)

虽然我的应用程序正在开发中,但它似乎需要验证,但我认为在我的应用程序开发的整个生命周期中,我已经登录了 100 多次。(请参阅 OAuth 用户配额) https://support.google.com/cloud/answer/7454865?authuser=0

我想我必须验证我的应用程序有谁知道是否是这种情况......?

于 2020-03-06T11:24:34.360 回答
0

我认为(至少对某些人来说)这个错误可能会导致他们走向错误的方向。就我而言,我的 API 调用正常工作,然后突然停止。这是我在解决此错误时的思考过程,希望它对某人有所帮助:

观察结果

  • 产生了新的错误
 "error": {
  "errors": [
   {
    "domain": "usageLimits",
    "reason": "dailyLimitExceededUnreg",
    "message": "Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup.",
    "extendedHelp": "https://code.google.com/apis/console"
   }
  ],
  "code": 403,
  "message": "Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup."
 }
}
  • 这发生在尝试使用以下调用向 Google Calendar API 发送更新的测试期间:
service.events().patch(calendarId='primary', eventId=id, sendNotifications=True, body=update).execute()
  • 这发生在我更新time_start发送给谷歌的 json 中引用的变量中的数据后不久:
    update = {
        'start': {
            'dateTime': time_start,  # Specifically this variable (time_start) was changed
            'timeZone': time_zone,
        },
        'end': {
            'dateTime': time_end,
            'timeZone': time_zone,
        },
        'description': description,
    }
  • 我的time_start变量中的信息从:更改 2020-05-13T17:06:42-07:002020-05-13T17:06:42(注意缺少的 UTC 偏移量)

行动

  • 更新了我的代码填充time_start以包含正在传递给谷歌日历 API 的缺失 UTC 偏移量。

结果

  • 有效载荷成功传输到谷歌日历,我的活动被更新补丁
于 2020-05-13T23:23:37.830 回答
0

就我而言,它发生在一天中的特定时间,花了几个小时后终于发现我的每日配额限制(每 100 秒的查询数)由于请求数量过多而超出了当时。所以它抛出了错误。我已联系谷歌支持以增加它们。

于 2018-01-24T06:13:05.607 回答
0

我只是遇到了同样的问题,然后发现出了什么问题。

当您从库中启用 Google Plus API 时,需要完成额外的步骤才能完全激活。您必须点击 Google Plus API 库页面中的“管理”按钮并填写两个问题答案并提交。就这样!!

这解决了我的问题,我希望它也能解决你的问题。这是我单击“管理”按钮后拍摄的那个页面的屏幕截图,该按钮显示“将凭据添加到您的项目”。

Google Plus API 库向您的项目添加凭据

于 2019-07-03T05:20:35.233 回答
0

就我而言,这是因为我使用的是旧的访问令牌。您必须记住,访问令牌的生命周期很短,因此您必须使用刷新令牌来生成新的访问令牌。示例(使用 PHP 类):

// Get the access token from DB or filesystem
$accessToken = $this->getAccessToken();
// Set the access token
$this->client->setAccessToken($accessToken);

// Refresh the token if it's expired.
if ($this->client->isAccessTokenExpired()) {
    $this->client->fetchAccessTokenWithRefreshToken($this->client->getRefreshToken());
    // Save the new access token to DB or filesystem
    $this->saveAccessToken($this->client->getAccessToken());
}
于 2018-05-22T02:42:51.673 回答