在我的网络应用程序中集成 Google OAuth 授权
我正在构建一个网络应用程序,我需要从 Google 文档(Google Apps)访问电子表格列表,
我想使用 OAuth 进行身份验证。
我怎样才能在我的 PHP 应用程序中做到这一点?
一件重要的事情是,我想代表我的用户进行身份验证。我的应用程序将在后台运行,用户将收到有关与其帐户关联的电子表格列表的电子邮件。我不想要一个每次脚本运行时都需要用户输入他/她的电子邮件 ID 和密码的脚本。
I am building a web-app where I need to access list of spreadsheets from Google Docs (of Google Apps)
I want to authenticate using OAuth.
How can I do it in my PHP application?
One important thing, I want to authenticated on my user behalf. My application will run in background, and user will get email regarding list of spreadsheets associated with his/her account. I don't want a script that will need user to enter his/her email-id and password everytime script runs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,以下是Google 使用 OAuth 的概述:
http://www.google.com/support/a/bin /answer.py?answer=61017
接下来,我们更深入概述 Google 的 OAuth 使用情况:http://code.google.com/apis/accounts/docs/GettingStarted.html
接下来,这里是如何使用 PHP 进行双腿 OAuth 的示例>:
http://gdatatips.blogspot.com/2008/11 /2-legged-oauth-in-php.html
最后,这是 Google Documents List API(您很可能需要使用它):
http://code.google.com/apis/documents/
尽情享受吧! (如果您喜欢这个答案,请记得投票)
First, here is an overview of OAuth usage with Google:
http://www.google.com/support/a/bin/answer.py?answer=61017
Next, here is a more in-depth overview of OAuth usage with Google: http://code.google.com/apis/accounts/docs/GettingStarted.html
Next, here is a sample of how to do 2 legged OAuth with PHP:
http://gdatatips.blogspot.com/2008/11/2-legged-oauth-in-php.html
Finally, here is the Google Documents List API (that you will most likely need to use):
http://code.google.com/apis/documents/
Enjoy! (And remember to vote up if you liked this answer)