iOS Google+获得的朋友数量

时间:2015-03-19 17:41:12

标签: ios iphone google-api google-plus

在我的iOS应用中,我需要检索使用Google+ SDK登录的用户的总跟随者号码,我使用过这种方法,但它会返回与我的帐户相关的总人数。我想只计算跟随我的人,可以看到我在墙上发布的内容。 这是我用过的代码:

 GTLQueryPlus *query =
[GTLQueryPlus queryForPeopleListWithUserId:@"me"
collection:kGTLPlusCollectionVisible];

// 2. Execute the query.
[[[GPPSignIn sharedInstance] plusService] executeQuery:query
      completionHandler:^(GTLServiceTicket *ticket,
      GTLPlusPeopleFeed *peopleFeed,
NSError *error) {
   if (error) {
      GTMLoggerError(@"Error: %@", error);


   } else {


      // Render the status of the Google+ request.
      NSNumber *count = peopleFeed.totalItems;
      Total=[count intValue];
      id<GPPShareBuilder> shareBuilder = [self shareBuilder];

         if (![shareBuilder open]) {

         }



   }
}];

我该怎么做?

1 个答案:

答案 0 :(得分:1)

要获得Google+个人资料的关注者总数,您只需使用people.get API方法并使用circledByCount即可。请注意,该号码仅在配置文件公开且基于所有关注者时才可用,并且不能仅限于使用当前应用的配置文件。