skip to Main Content

when i create a new account the error occurs

W/StorageUtil(22184): Error getting App Check token; using placeholder token instead. Error: com.google.firebase.FirebaseException: Error returned from API. code: 403 body: App attestation failed.
W/NetworkRequest(22184): no auth token for request
E/StorageException(22184): StorageException has occurred.
E/StorageException(22184): User does not have permission to access this object.
E/StorageException(22184): Code: -13021 HttpResult: 403
E/StorageException(22184): The server has terminated the upload session

What could be causing in creating new account?
How can I resolve this issue?

2

Answers


  1. Firebase.initializeApp(
    options: FirebaseOptions(
    apiKey: "//",
    appId: "",
    messagingSenderId: "",
    storageBucket: "",
    projectId: "")),
    you found this in google services file

    Login or Signup to reply.
  2. Verify your firebase console in rules page of storage and remove the condition of wite and read (if …………… Until ; )

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search