How fix error, cant insert/read from firebase realtime using xamarin form

UnknownXam 21 Reputation points
2022-12-12T12:26:23.647+00:00

how to fix this error, Firebase.Database.FirebaseException: 'Exception occured while processing the request.
Url: https://***************************************************************/.json?print=silent
Request Data: {/*I comment this out,but this part is like my table property and its data */}
Response: {
"error" : "Permission denied"
}
'
and our database rule is;

{
"rules": {
"some_path": {
"$uid": {
// Allow only authenticated content owners access to their data
".read": "auth !== null && auth.uid === $uid",
".write": "auth !== null && auth.uid === $uid"
}
}
}
}

Developer technologies | .NET | Xamarin
{count} votes

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.