I am currently using the Users API ( here ) with the Go language in the Google App Engine application. My users receive a warning message when they first grant permissions stating that "OpenID 2.0 for Google Accounts is leaving. Developers should upgrade to OpenID Connect by April 20, 2015." But I canβt find any warnings in the documentation of the user APIs saying that something will stop working, for example, I do everything in other sections regarding OpenID 2.0 ( here ).
I use very little user API code, just to create login URLs:
url, _ := user.LoginURLFederated(c, return_url, "www.google.com/accounts/o8/id")
And to read the email addresses of users, for example:
u := user.Current(appengine.NewContext(r)) email := u.Email
Is there any need to worry about porting, or will the API continue to process without fail after April 20?
google-app-engine go google-openid
Blair connolly
source share