谷歌oauth用户个人资料
我已经使用谷歌 oauth 使用三足方法来获取电子邮件。 我想在oauth身份验证期间访问登录gmail的人的用户个人资料? 任何谷歌数据API这是否意味着用户的用户个人资料信息。另外如何/在哪里编写该代码? 标记
I have used the google oauth to fetch the emails using three legged approach.
I want to access the user profile of the person who has logged into the gmail during oauth authentication?
Any google data api does this i mean the user profile information of the user.Also how to / where to write that pece of code?
Mark
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
专门为你写了一篇文章
http://kurapov.name/eng/tech/google_oauth
:)
Wrote an article just for you
http://kurapov.name/eng/tech/google_oauth
:)
您可以使用 userinfo API 或 Google+ API 获取用户的 Google 个人资料。
以下是一个示例应用程序,演示如何使用 userinfo API:
http://code .google.com/p/google-api-php-client/source/browse/trunk/examples/userinfo/index.php
以下是使用 Google+ API 的示例:
http://code.google.com/p/google-plus-php-启动器/
You could fetch the user's Google profile with the userinfo API, or the Google+ API.
Here's a sample application demonstrating how you can use the userinfo API:
http://code.google.com/p/google-api-php-client/source/browse/trunk/examples/userinfo/index.php
Here's one using the Google+ API:
http://code.google.com/p/google-plus-php-starter/