Questions tagged [firebase-app-check]

App Check works alongside other Firebase services to help protect your backend resources from abuse by allowing only your apps to access them.

App Check works alongside other Firebase services to help protect your backend resources from abuse, such as billing fraud or phishing. With App Check, devices running your app will use an app or device attestation provider that attests to one or both of the following:

  • Requests originate from your authentic app
  • Requests originate from an authentic, untampered device

This attestation is attached to every request your app makes to your Firebase backend resources.

App Check has built-in support for using the following three services as attestation providers:

  • DeviceCheck on iOS
  • SafetyNet on Android
  • reCAPTCHA v3 on web apps

If these are insufficient for your needs, you can also implement your own service that uses either a third-party attestation provider or your own attestation techniques.

App Check currently works with the following Firebase products:

  • Realtime Database
  • Cloud Firestore
  • Cloud Storage
  • Cloud Functions (callable functions)

Related tags

315 questions
0
votes
0 answers

Where did I go wrong for Appcheck?

I am using firebase real time database in my application. In the update 1,5 month ago, I activated appcheck in my application. Even though most users have upgraded to the new update, the appcheck data still seems to be minimal. Where did I go wrong?…
0
votes
1 answer

How can we include app check tokens in sending Firestore REST Api requests?

I've created a custom Firebase App Check provider for my firebase apps. My question is, how do I properly send a successful request using Firestore REST API after getting the token from my custom app check. Thanks!
0
votes
0 answers

Why is App check not working (permission denied)?

I am out of ideas right now why my app does not pass app check verifications. I am building a React-Native app with Firebase using react-native-firebase. It throws this error: [firestore/permission-denied] I have installed the app-check package…
showtime
  • 1
  • 1
  • 17
  • 48
0
votes
0 answers

Pass String value from Escaping Swift function to Kotlin Multiplatform

I need to pass String token from FirebaseAppCheck to Kotlin Multiplatform. I can get access to Kotlin class and assign values, but it always return null because of fact that Kotlin compiles first. Below is my swift function that should send token to…
0
votes
0 answers

Firebase gives 'appCheck is not a function' when using the client SDK in version 8

I'm getting an error when I initialize the AppCheck in my project. Firebase version: "^8.8.1". import "firebase/functions"; const firebaseConfig = { apiKey: "--", authDomain: "--", projectId: "--", storageBucket: "--", …
0
votes
0 answers

I've to use firebase storage but I'm getting App check exception

I'm building a Podcast App in Flutter with Firebase. Authentication and FireStore Database reading are working correctly, but when I read some files from the firebase storage I get App Check exception: "No App Check token for request.". I do not…
0
votes
0 answers

How to integrate firestore appCheck with react?

I have the following issue I want to integrate appCheck in to my app using recapta3 , where should I put the google script ? and should I also integrate it in functions ?, I don't want to bash on the docs, but thy only give script tag, I am using…
Richardson
  • 1,804
  • 10
  • 38
0
votes
0 answers

Does app check signs the payload of a request

App attest seems to sign the payload of a request with the private key of a key pair. App check handles different providers than app attest: DeviceCheck or App Attest on Apple platforms Play Integrity or SafetyNet (deprecated) on Android reCAPTCHA…
Ced
  • 15,847
  • 14
  • 87
  • 146
0
votes
1 answer

Why am I getting a Firebase AppCheck error in iOS (Flutter app)

I've registered the Android and iOS versions of my Flutter app for AppCheck but it doesn't seem to work. I chose App Attest instead of DeviceCheck for iOS since it was more simple and AppCheck is initialized in the main function when the app starts.…
Globe
  • 514
  • 3
  • 17
0
votes
1 answer

Angularfire conditionally provide appcheck

I have two angular projects: Main app Webcomponent (angular elements) Webcomponent is used in the main app. Both are using angularfire for executing Firebase functions, working with Firestore and more. Also I am enforcing verified request to the…
0
votes
2 answers

What is the pricing structure for Firebase AppCheck?

I want to ask: what are the pricing details for firebase AppCheck if I want to protect both my android and iOS apps using my hybrid development platform (flutter/react-native)? Also what is the pricing or procedural details for increased API calls,…
HENOK MILLION
  • 309
  • 1
  • 9
0
votes
1 answer

How to Activate AppCheck on React Native in Debug

I am following the documentation https://rnfirebase.io/app-check/usage to use appcheck on React Native. When I am testing in on my Emmulator, It is not responding to the realtime database requests. All the requests are showing as unverified requests…
0
votes
1 answer

Firebase App Check returned error status 500 in production (Web App)

I add Firebase App Check with reCAPTCHA Enterprise in my vue3 project(web app project), and work well on mode devel(debug provider). But when build on production, appcheck not working and return HTTP status: 500. my appcheck config: if…
Syaifudin Zuhri
  • 108
  • 1
  • 2
  • 11
0
votes
1 answer

No need for Firestore rules with App Check in enforcement mode?

Please could I ask for a bit of advice. I have an app that does not require users to create accounts and does not use authentication. The app stores settings in Firestore. To secure Firestore, I have set-up App Check and set into enforcement mode…
Luke
  • 1,149
  • 1
  • 7
  • 15
0
votes
1 answer

Implementing Firebase AppCheck for REACT Web

I am trying to implement Firebase AppCheck feature for my React web application. I registered for reCaptchav3 but it doesn't seem to be working. I followed the sample on Firebase AppCheck Documentation, not sure what is wrong. Anyone knows what to…
der
  • 69
  • 7