Okay
  Public Ticket #3128475
HTTP error: status code 404 Firebase
Closed

Comments

  • medicenjoja started the conversation

    Hello, could you help me with these errors that firebase is telling me?https://prnt.sc/3BNaZ48YuDWH

    These are the rules I am using in firebase:

    {
      "rules": {
        ".read": "auth != null",
        ".write":"auth != null",
        "notifications":{ 
          ".indexOn":["status"] 
        },
        "users":{
          "$uid":{
            "chats":{
              ".indexOn":["lastUpdated"]
            }
          }
        }
      }
    }

  • [deleted] replied

    well in place of :

    {
      "rules": {
        ".read": "auth != null",
        ".write":"auth != null",
        "notifications":{ 
          ".indexOn":["status"] 
        },
        "users":{
          "$uid":{
            "chats":{
              ".indexOn":["lastUpdated"]
            }
          }
        }
      }
    }

    change the line in rules : 

    ".indexOn":["lastUpdated"]


    to ".indexOn":["firebaseUid"]




  • medicenjoja replied

    Thank you. You can close this ticket now