在Android中使用后端进行Firebase身份验证

时间:2020-08-11 01:53:56

标签: php android firebase

我计划使用Firebase进行身份验证并为我的Android应用建立聊天。但是我为其余的API定制了后端。 我们可以同时使用自定义后端身份验证和Firebase身份验证吗?

1 个答案:

答案 0 :(得分:1)

当然。您需要:

  1. Sign the user in with Firebase Authentication in your app
  2. 通过安全连接传递user's ID token from the app to your server
  3. Decode and validate the ID token.
  4. 确保用户有权执行他们要执行的操作。