如何获取 gmail api 的消费者密钥和消费者秘密?
我正在尝试使用 Gmail php xoath php 示例,但是它需要输入消费者密钥和消费者秘密,我在 Gmail api 文档中找不到如何获取这些密钥和秘密。有谁知道如何获取它们或知道任何相关文档吗?
I am trying to use Gmail php xoath php samples, however it requires to enter consumer key and consumer secret which I could not find how to obtain in Gmail api documentation. Does any one know how to obtain them or know of any related documentation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 google 示例中使用 IMAP & 访问 Gmail OAuth,您可以找到此代码:
希望这有帮助
In the google example to access to Gmail using IMAP & OAuth, you can find this code:
Hope this helps
对于未向 Google 注册的应用程序,请使用
anonymous
/anonymous
和HMAC-SHA1
签名。对于通过 Google 注册的应用程序,您应使用应用程序域作为使用者密钥,而使用者密钥取决于签名方法(您的RSA-SHA1
私钥和注册期间生成的密钥) HMAC-SHA1)。如需了解更多详情,请参阅签署 OAuth 请求。
请注意,据我所知,仅 Google Apps 管理员安装的应用程序支持注册应用程序的 HMAC-SHA1。
Use
anonymous
/anonymous
andHMAC-SHA1
signature for applications that are not registered with Google. For applications registered with Google, you should use the application domain as consumer key and the consumer secret depends on the signing method (your private key forRSA-SHA1
and the secret generated during the registration forHMAC-SHA1
). More details at Signing OAuth requests.Note that as far as I know, HMAC-SHA1 for registered applications is supported only for applications installed by the Google Apps admins.