GPPSignIn *signIn;
在我的 iOS 应用程序中,我将范围设置为:
signIn.scopes = @[@"https://www.googleapis.com/auth/plus.login",
@"https://www.googleapis.com/auth/plus.me",
@"https://www.googleapis.com/auth/plus.profile.emails.read",
@"email",
@"profile",
@"https://www.googleapis.com/auth/user.birthday.read"];
还,
signIn.shouldFetchGoogleUserEmail = YES;
signIn.shouldFetchGooglePlusUser = YES;
并试图access_token
从谷歌获得。我得到并发送到服务器。
现在,我的服务器正在这样做:
client = OAuth2::Client.new('app_id', 'app_secret')
access_token = OAuth2::AccessToken.new(client, access_token)
profile_api_url = 'https://www.googleapis.com/plus/v1/people/me'
response = access_token.get(profile_api_url)
google_profile_res_body = JSON.parse(response.body)
在这里,google_profile_res_body
有许多属性,但没有生日和性别。
有人知道吗?请建议。提前致谢。
干杯,拉胡尔