gitkit

Migrating Python backend from Gitkit to to Firebase-Auth with python-jose for token verification

时光怂恿深爱的人放手 提交于 2020-01-01 07:06:07
问题 Over on GitHub a helpful Google dev told me that to create a user session, your python backend server only needs a JWT library to verify the Firebase Auth token (signature and audience) in the request and extract the user info from the token payload. I am having trouble with verifying the token. This is where I'm at; In order to start the migration I proceeded as follows: I added Firebase-Auth to the Android App, while still having Gitkit in the App until Firebase-Auth works. Now I have two

Migrating Python backend from Gitkit to to Firebase-Auth with python-jose for token verification

房东的猫 提交于 2020-01-01 07:05:01
问题 Over on GitHub a helpful Google dev told me that to create a user session, your python backend server only needs a JWT library to verify the Firebase Auth token (signature and audience) in the request and extract the user info from the token payload. I am having trouble with verifying the token. This is where I'm at; In order to start the migration I proceeded as follows: I added Firebase-Auth to the Android App, while still having Gitkit in the App until Firebase-Auth works. Now I have two