-
Hi, I've just included App Check to my RN app. I've done all these steps
But I got this
and a lot of "Unverified: invalid requests" from the Firebase Console's App Check request metrics chart. I'm testing App check with Firestore on a real iPhone device in debug and release mode. Activating like below doesn't work too. await firebase.appCheck().activate('ignored', true); // is this really necessary? Do I miss something? |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
-
[SOLVED]
I went to DeviceCheck settings in the Firebase console, checked the Auth key and found that I uploaded the wrong p8 file. I went back to the Apple Certificates, Identifier & Profile and I downloaded the key, then uploaded it to the Firebase console. It works fine now. Hope this is helpful to someone. |
Beta Was this translation helpful? Give feedback.
-
I had a similar issue, but my problem was that I had used the wrong Team-ID. So to anyone else getting the same error response, check your firebase config :) |
Beta Was this translation helpful? Give feedback.
-
We have an app live during the smoke testing we havent faced this issue at all, but in our Error monitoring we found a lot of users facing this issue. My question is: if i used the wrong p8 file should all the users face the same issue not part of it right ? |
Beta Was this translation helpful? Give feedback.
-
@OmarKhairyMo facing the same issue |
Beta Was this translation helpful? Give feedback.
-
The same issue on production build im getting lot of users where don't have token, also on dev mode getting 403 error |
Beta Was this translation helpful? Give feedback.
[SOLVED]
When I looked into the XCode logs I found this
I went to DeviceCheck settings in the Firebase console, checked the Auth key and found that I uploaded the wrong p8 file.
I went back to the Apple Certificates, Identifier & Profile and I downloaded the key, then uploaded it …