• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

iOS:无法获取所有 Google People api 集合列表

[复制链接]
菜鸟教程小白 发表于 2022-12-11 17:43:58 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

以下是我使用 GIDSignIn 登录从 google 帐户获取人员/联系人的代码。

代码:

- (void)setAuthorizerForSignInGIDSignIn *)signIns userGIDGoogleUser *)user {
    GTMOAuth2Authentication *auth = [[GTMOAuth2Authentication alloc] init];
    [auth setClientID:signIns.clientID];
    [auth setUserEmail:user.profile.email];
    [auth setUserID:user.userID];
    [auth setAccessToken:user.authentication.accessToken];
    [auth setRefreshToken:user.authentication.refreshToken];
    [auth setExpirationDate: user.authentication.accessTokenExpirationDate];
    appDelegate.authGooglePlus = auth;
    NSString *urlStr = @"https://people.googleapis.com/v1/people/me/connections?pageSize=200";
   NSURL *url = [NSURL URLWithString:urlStr];
   NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
   [request setHTTPMethod"GET"];
   auth.scope= @"https://www.googleapis.com/auth/contacts";
   [auth authorizeRequest:request
          completionHandler:^(NSError *error) {
              NSString *output = nil;
              if (error) {
                  output = [error description];
              } else {
                  NSURLResponse *response = nil;
                  NSData *data = [NSURLConnection sendSynchronousRequest:request
                                                       returningResponse:&response
                                                                   error:&error];
                  if (data) {
                      output = [[NSString alloc] initWithData:data  encoding:NSUTF8StringEncoding];
                      NSMutableArray *array = [[output JSONValue] objectForKey"connections"];
                      }
                  } else {
                      // fetch failed
                      output = [error description];
                  }
              }
          }];
}

以下是我获取人员/联系人列表的代码,但我只能获取 7 条记录而不是所有记录,知道如何实现吗?



Best Answer-推荐答案


Google People API 仅返回联系人组中的联系人。问题很可能是其他记录是“其他联系人”,它们不在任何联系人组中,因此不会被返回。

目前无法从 Google People API 获取其他联系人。

关于iOS:无法获取所有 Google People api 集合列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39851239/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap