我试图访问用户的谷歌的Google+帐户friendslist。
我已经使用这个代码,这个目的...
-(void)getGooglePlusAccounts:(NSString *)notificationNameStr
{
GTLServicePlus* plusService = [[GTLServicePlus alloc] init];
plusService.retryEnabled = YES;
[plusService setAuthorizer:[[GPPSignIn sharedInstance] authentication]];
GTLQueryPlus *query =
[GTLQueryPlus queryForPeopleListWithUserId:@"me"
collection:kGTLPlusCollectionVisible];
[plusService executeQuery:query
completionHandler:^(GTLServiceTicket *ticket,
GTLPlusPeopleFeed *peopleFeed,
NSError *error) {
if (error) {
NSLog(@"Error: %@", error);
} else {
// Get an array of people from GTLPlusPeopleFeed
NSArray* peopleList = peopleFeed.items;
NSLog(@"peopleList: %@", peopleList);
}];
}
这将让我的用户ID,图片,名称而不是电子邮件。
我怎样才能找到一个朋友的电子邮件。