I get the following FirebaseException
on creating a new account:
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?
Verify your firebase console in rules page of storage and remove the condition of wite and read (if …………… Until ; )
1
- Verify your firebase console in rules page of storage and remove the condition of write&read (if…Until;)
- You will find this in google services file:
Firebase.initializeApp(
options: FirebaseOptions(
apiKey: "//",
appId: "",
messagingSenderId: "",
storageBucket: "",
projectId: "")),
1