如何获得 Google Apps 应用程序的永久长期身份验证令牌?
大家好,我正在开发我的谷歌应用程序 - 目前我已经根据谷歌提供的示例构建了身份验证,即这个 url
问题是会话似乎超时了,每次我登录我的谷歌应用程序帐户并转到我的应用程序时,我都需要再次进行身份验证并浏览谷歌所在的屏幕询问我是否应该允许应用程序访问清单 xml 文件中列出的 GMAIL、文档等服务。我认为我做得不对,因为其他应用程序允许即时访问。
任何想法
Hi guys I'm working on my google apps application - currently I've build the authentication upon the example available at google namely this url
The problem is that the session seems to time out and that everytime I am logged into my google apps account and go to my application I need to authenticate again and go through the screen where google asks me if I should allow the application to access the services like GMAIL, Docs etc listed in the manifest xml file. I don't think I'm doing it right as other applications allow instant access.
Any ideas
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该存储并重用 oauth 访问权限和秘密密钥。这应该避免与 google (或其他基于 oauth 的服务)重新进行身份验证 - 当然,除非您的访问密钥已被撤销。
干杯!
you should store and reuse the oauth access & secret key. this should avoid the re-authentication with google (or other oauth based services) - unless your access key has been revoked of course.
Cheers!