gpt4 book ai didi

dart - Google+ api 与 dart chrome 应用程序 - 403 每日限制

转载 作者:行者123 更新时间:2023-12-02 11:15:47 24 4
gpt4 key购买 nike

我正在尝试使用 google_plus_v1_api + google_oauth2_client在 Chrome 打包的应用程序中。

当我仅使用 oauth2 库时,一切正常:

chrome.identity.getAuthToken(new chrome.TokenDetails(interactive:true))
.then((token){
OAuth2 auth = new SimpleOAuth2(token);
var request = new HttpRequest();
request.onLoad.listen((d){print(request.response);
request.open('GET', 'https://www.googleapis.com/plus/v1/people/me');
auth.authenticate(request).then((request) => request.send());
});

但我无法使 google+ lib 正常工作:

chrome.identity.getAuthToken(new chrome.TokenDetails(interactive:true))
.then((token){
OAuth2 auth = new SimpleOAuth2(token);
Plus plus = new Plus(auth);
plus.people.get('me').then((d)=>print(d));
});

返回此异常:

GET https://www.googleapis.com/plus/v1/people/me 403 (Forbidden) Exception: APIRequestException: 403 Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup.

我错过了什么吗?我应该如何使用 google+ api lib?

最佳答案

我刚刚看到您的答案,但想指出我也遇到了同样的问题,并通过将 Plus 客户端的 makeAuthRequests 属性设置为 true 来解决它:

final plusclient.Plus plus = new plusclient.Plus(auth)
..makeAuthRequests = true;

似乎是一个更直接的解决方案,因为 auth 对象已经包含 token 。我希望在使用 OAuth2 对象构造 Plus 客户端时,makeAuthRequests 自动设置为 true,但显然它不是(可能是监督)。

关于dart - Google+ api 与 dart chrome 应用程序 - 403 每日限制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22921690/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com