How to disable appcheck for firebase functions on emulator

Hi, I deploy a firebase function on emulator (firebase emulators:start --only functions)

when i request a callable from my client, i got error:

 

 

>  {"verifications":{"app":"MISSING","auth":"MISSING"},"logging.googleapis.com/labels":{"firebase-log-type":"callable-request-verification"},"severity":"DEBUG","message":"Callable request verification passed"}

 

 

How to disable appcheck for firebase functions on emulator?

1 4 429
4 REPLIES 4

Open a terminal or command prompt.
Go to your Firebase project directory if you haven't already.
Run the Firebase functions emulator with the --disable-app-check option.
After doing this, AppCheck will be disabled for Firebase features in the emulator and you should not receive error messages related to missing app checks.
Remember to ensure you are using the latest version of the Firebase CLI and Firebase emulators to ensure compatibility with this feature.

I have installed the latest version of the Google Firebase CLI.
I tried:
firebase emulators:start --disable-app-check
and it reported an error:

error: unknown option '--disable-app-check'

Running in the same issue, though Auth is VALID for me. Did not find the --disable... flag. 

Same