GAE Golang – OAuth 和 OAuth2?

huangapple go评论91阅读模式
英文:

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

huangapple
  • 本文由 发表于 2012年8月13日 21:35:40
  • 转载请务必保留本文链接:https://go.coder-hub.com/11935380.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定