We are required to use our own authentication in our App.
Can Firebase authentication services pass through user entered credentials to our authentication services so that Firebase authorization uid can be set and we can use Firebase Database rules such as:
/ 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"
}
}
}
}