React Native Firebase
    Preparing search index...

    An App Check provider. This can be either the built-in reCAPTCHA provider or a custom provider. For more on custom providers, see https://firebase.google.com/docs/app-check/web-custom-provider

    interface ReactNativeFirebaseAppCheckProvider {
        providerOptions?: ReactNativeFirebaseAppCheckProviderOptionsMap;
        configure(options: ReactNativeFirebaseAppCheckProviderOptionsMap): void;
        getToken(): Promise<AppCheckToken>;
    }

    Hierarchy (View Summary)

    Index

    Methods

    • Specify how the app check provider should be configured. The new configuration is in effect when this call returns. You must call getToken() after this call to get a token using the new configuration. This custom provider allows for delayed configuration and re-configuration on all platforms so AppCheck has the same experience across all platforms, with the only difference being the native providers you choose to use on each platform.

      Returns void

    Properties

    Provider options for platform-specific configuration. This is set when configure() is called.