回答

0

不幸的是,如果没有后端,则无法将Firebase登录与Cognito集成,因为它不支持OpenId Connect。与后端,你将需要实现Developer Authenticated Identities流程如下:

实施AWSAbstractCognitoIdentityProvider

在刷新方法:

  1. 登录通过火力地堡
  2. 拨打HTTPS调用传递火力地堡登录 令牌到您的后端和验证
  3. 从您的后端,使用开发人员凭据调用 GetOpenIdForDeveloperIdentity
  4. 通 结果返回到设备
  5. 更新身份ID和登录地图
相关问题