Replies: 1 comment
-
Its possible but nuanced. Web3Auth complies with your app/firebase via the JWT OAuth standard, which is dependent on two main things wrt to your application:
They either have to be the same, or you'll need to update your verifier to the new set of keys that you have setup.
This MUST be the same from Firebase relative to your new auth setup. If condition 1. and 2. are fufilled you'll be able to migrate your auth provider. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently I am using firebase as my custom auth provider in my custom verifier. However before committing, I want to know if its possible to move away from firebase to another custom auth provider (non-google) and plug that in the same custom verifier (basically if I would be stuck in firebase?). This would mean that I export the auth data of my users from firebase into the new database with its own auth system, and plug this in to the existing web3auth custom verifier.
The expected behaviour after migration is:
So the export of data and new data base + custom auth would be done on my side, but to safely plug in to an existing web3auth verifier, how would this be done?
Beta Was this translation helpful? Give feedback.
All reactions