Migrating Firebase users to AWS Cognito

后端 未结 2 976
梦如初夏
梦如初夏 2020-12-30 12:06

I currently have a mobile application using Firebase for user authentication and storing data.

I would like to migrate from Firebase to AWS. Exporting the DB from Fi

相关标签:
2条回答
  • 2020-12-30 12:06

    There are multiple ways to migrate users to AWS Cognito. A couple approaches are:

    • Import users as batches. This will require you to take users in to the forget password flow.
    • Onboard users to Cognito UserPools one at a time. This approach requires you to write some code to check against Cognito if the user exists and if not to authenticate users from the Firebase endpoint and if authenticated correctly save the credentials in Cognito UserPools using Cognito AdminAuth API.

    For more details, refer the article from AWS, Migrating Users to Amazon Cognito User Pools.

    0 讨论(0)
  • 2020-12-30 12:18

    You can use the User Migration Lambda Trigger.

    https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-migrate-user.html

    0 讨论(0)
提交回复
热议问题