英文:
GAE Golang - OAuth and OAuth2?
问题
我正在尝试实现一个使用OAuth和OAuth2进行用户登录的Google App Engine Go应用程序。我想知道是否可能以及如何实现?有人能提供一个示例吗?
英文:
I'm trying to implement a Google App Engine Go application that will be using OAuth and OAuth2 for users logging in. I'm wondering if it is possible, and if so, how to do it? Can someone provide an example of this?
答案1
得分: 3
你可以使用goauth2在App Engine上实现一个OAuth2客户端。
然后,你可以通过请求https://www.googleapis.com/auth/userinfo.profile
作用域来使用用户的Google帐号登录,如使用OAuth 2.0进行登录中所示。
英文:
You can use goauth2 to implement an OAuth2 client on App Engine
You can then log your users with their Google Account by requesting https://www.googleapis.com/auth/userinfo.profile
scopes as shown on Using OAuth 2.0 for Login
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论