OpenID 2.0 是否也支持其他 openId 提供商的 Turndown?
OpenID 2.0 Support Turndown also for other openId providers?
我正在使用 appengine/Java。
我知道 Google 放弃了对 OpenId 提供商的支持。因此,我迁移到 OpenID 连接以使用 Google、
登录
- 使用以下时间表:
https://developers.google.com/identity/sign-in/auth-migration#timetable
- 应用以下步骤:https://developers.google.com/identity/protocols/OpenID2Migration
由于据说 App Engine 仍将支持第三方 OpenId 提供商,我仍然使用 OpenId 登录 AOL 和 Yahoo。
现在我在日志中收到以下警告:
com.google.appengine.api.users.UserServiceImpl createLoginURL: Open ID
2.0 support in the App Engine Users service is deprecated and will soon be removed. Please see
https://cloud.google.com/appengine/docs/deprecations/open_id for
details.
指向https://cloud.google.com/appengine/docs/deprecations/open_id。
但是这个页面并不清楚是否 Google 不再是 OpenId 提供商,或者应用引擎将不再支持 OpenId 功能,对于仍然支持 OpenId 的提供商,如 AOL 和 Yahoo .
如果是这种情况,我担心:如何迁移这些帐户?
是的,将关闭 OpenID 2.0 依赖方对使用 OpenID 2.0 帐户登录 App Engine 的支持,如该页面所述:
OpenID 2.0 is an alpha feature of the Users API that allows non-Google
accounts to login to the App Engine Users API
这是 Google 应用程序从 OpenID 2.0 迁移到 OpenID Connect 的补充。
您将必须手动将帐户迁移到其他协议,如下所示:
Java example how to login with Facebook account on GAE using OAuth
我正在使用 appengine/Java。
我知道 Google 放弃了对 OpenId 提供商的支持。因此,我迁移到 OpenID 连接以使用 Google、
登录- 使用以下时间表: https://developers.google.com/identity/sign-in/auth-migration#timetable
- 应用以下步骤:https://developers.google.com/identity/protocols/OpenID2Migration
由于据说 App Engine 仍将支持第三方 OpenId 提供商,我仍然使用 OpenId 登录 AOL 和 Yahoo。
现在我在日志中收到以下警告:
com.google.appengine.api.users.UserServiceImpl createLoginURL: Open ID 2.0 support in the App Engine Users service is deprecated and will soon be removed. Please see https://cloud.google.com/appengine/docs/deprecations/open_id for details.
指向https://cloud.google.com/appengine/docs/deprecations/open_id。
但是这个页面并不清楚是否 Google 不再是 OpenId 提供商,或者应用引擎将不再支持 OpenId 功能,对于仍然支持 OpenId 的提供商,如 AOL 和 Yahoo .
如果是这种情况,我担心:如何迁移这些帐户?
是的,将关闭 OpenID 2.0 依赖方对使用 OpenID 2.0 帐户登录 App Engine 的支持,如该页面所述:
OpenID 2.0 is an alpha feature of the Users API that allows non-Google accounts to login to the App Engine Users API
这是 Google 应用程序从 OpenID 2.0 迁移到 OpenID Connect 的补充。
您将必须手动将帐户迁移到其他协议,如下所示: Java example how to login with Facebook account on GAE using OAuth