0
我們需要在我們的應用程序中使用我們自己的身份驗證。如果我們使用自己的身份驗證,我們可以爲Firebase數據庫提供我們自己的uid嗎?
能火力驗證服務通過用戶輸入憑證到我們的認證服務,使火力地堡授權UID可以設置我們可以用火力地堡數據庫的規則,如:
/ These rules grant access to a node matching the authenticated
// user's ID from the Firebase auth token
{
"rules": {
"users": {
"$uid": {
".read": "$uid === auth.uid",
".write": "$uid === auth.uid"
}
}
}
}
是的!從https://firebase.google.com/docs/auth/,自定義身份驗證系統集成iOS示例:https://firebase.google.com/docs/auth/ios/custom-auth謝謝! – Cris