gpt4 book ai didi

javascript - 使用 Google Plus API 获取用户的圈子列表

转载 作者:行者123 更新时间:2023-11-30 02:13:59 24 4
gpt4 key购买 nike

我在以下范围内使用 google auth

scope : ['https://www.googleapis.com/auth/tasks', 'https://www.googleapis.com/auth/tasks.readonly', 'https://www.googleapis.com/auth/userinfo.profile', 'https://www.googleapis.com/auth/plus.me', 'https://www.googleapis.com/auth/plus.circles.read']

我试图获取有关用户的信息,我使用了以下 API

var xhr = Ti.Network.createHTTPClient({
onload : function() {
var data = this.responseText;
var json = JSON.parse(data);
Ti.API.log('json: ' + JSON.stringify(json));
}
});
xhr.open("GET", "https://www.googleapis.com/oauth2/v1/userinfo?alt=json&access_token=" + googleAuth.getAccessToken());
xhr.send();

但它只提供了用户的基本信息,如何获取用户圈子中的 friend 信息。

我替换了 xhr.open("GET", "https://www.googleapis.com/oauth2/v1/userinfo?alt=json&access_token="+ googleAuth.getAccessToken());

xhr.open("GET", "https://www.googleapis.com/plusDomains/v1/people/me/circles?access_token=" + googleAuth.getAccessToken());

控制台中的响应文本是这样的

json: {"error":{"errors":[{"domain":"global","reason":"forbidden","message":"Forbidden"}],"code":403,"message":"Forbidden"}}

我已经启用

  • Google+ API,
  • Blogger API,
  • Google+ 信息页 API,
  • Google+ 域 API,

最佳答案

API 中最接近的是 People.list

https://www.googleapis.com/plus/v1/people/me/people/connected?key={YOUR_API_KEY}

尝试测试该系列,看看哪个更适合您的需求。您可以在页面底部测试结果。无法取回圈子的名称。

Acceptable values are:

"connected": The list of visible people in the authenticated user's circles who also use the requesting app. This list is limited to users who made their app activities visible to the authenticated user.

"visible": The list of people who this user has added to one or more circles, limited to the circles visible to the requesting application.

关于javascript - 使用 Google Plus API 获取用户的圈子列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29674435/

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