在我的 iPhone 应用程序中,我正在使用 google 登录Oauth2
,我正在遵循这个指令并成功登录
- (void)viewController:(GTMOAuth2ViewControllerTouch * )viewController
finishedWithAuth:(GTMOAuth2Authentication * )auth
error:(NSError * )error
{
if(!error)
{
UIAlertView * alert = [[UIAlertView alloc] initWithTitle:@"Success Authorizing with Google"
message:nil
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
}
我正在使用https://www.googleapis.com/auth/userinfo.profile范围GTMOAuth2Authentication
,现在我想获取用户基本信息,如姓名、年龄、电子邮件等。
那么我怎样才能得到所有的细节呢?
我搜索了很多,但没有找到任何东西。
可能重复的问题如何在 iOS 中获取 OAuth2 用户信息?,但这也无济于事。
请帮忙