Thank you for your understanding and for sharing your insights. I agree that the support situation can be challenging, and I appreciate your suggestion to temporarily turn off billing and conduct a thorough audit of my current software.
Regarding the security measures in place, I’ve implemented rules in Firebase similar to the ones you provided to secure access to the database and API keys. Here’s the rule set I’m currently using:
json
Copy code
{
"rules": {
".read": "auth != null",
".write": "auth != null",
"apiKeys": {
".read": false,
".write": false
},
"users": {
"$uid": {
".read": "$uid === auth.uid",
".write": "$uid === auth.uid"
}
}
}
}
I’ve ensured that only authenticated users can read and write to the database, and API keys are restricted from being accessed or modified. However, despite these measures, the issue persists.
I’ll proceed with your suggestion to turn off billing temporarily and conduct a thorough audit of my software. Hopefully, with support’s assistance and your valuable advice, we can identify and resolve the root cause of the problem.
Thank you once again for your support and guidance.
Best regards,