-
Notifications
You must be signed in to change notification settings - Fork 628
feat(appcheck): Implement reCAPTCHA Enterprise App Check provider #7125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 14 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
e193c14
WIP: feat(appcheck): Implement initial reCAPTCHA Enterprise provider
hiteshmaurya56 5288e7c
WIP: feat(appcheck-recaptcha-enterprise): Add token exchange models a…
hiteshmaurya56 c25340b
WIP: feat(appcheck-network): Extend NetworkClient for reCAPTCHA Enter…
hiteshmaurya56 86c3bbb
WIP: feat(appcheck-network): Extend NetworkClient for reCAPTCHA Enter…
hiteshmaurya56 68ac173
WIP: feat(appcheck-recaptcha-enterprise): Implement RecaptchaEnterpri…
hiteshmaurya56 014dc4a
WIP: chore(appcheck-recaptcha-enterprise): Integrate module into buil…
hiteshmaurya56 2d2b96d
test(appcheck-recaptcha-enterprise): Add unit tests for reCAPTCHA Ent…
hiteshmaurya56 7a99c47
Resolves comments
hiteshmaurya56 c8e295b
Resolves comments
hiteshmaurya56 5f925b4
feat: Add new library versions
hiteshmaurya56 9c34a6e
Resolves build errors
hiteshmaurya56 290a9fb
Fix: Apply Spotless formatting to appcheck-recaptchaenterprise module
hiteshmaurya56 b6dea8d
Fix: Apply Spotless formatting to appcheck-recaptchaenterprise module
hiteshmaurya56 ff30974
Fix: Add api.txt file
hiteshmaurya56 874ef41
Resolves comments
hiteshmaurya56 f30a68e
Resolves comments
hiteshmaurya56 24056ce
Resolves comments
hiteshmaurya56 4027c4d
Resolves comments
hiteshmaurya56 97fc25d
Corrects Formatting
hiteshmaurya56 1f56a6a
Resolves Comments
hiteshmaurya56 8d0f5ee
Removes Map from RecaptchaEnterpriseAppCheckProviderFactory
hiteshmaurya56 beac8e3
Resolves Spotless formatting issue
hiteshmaurya56 b99b2fa
Merge branch 'main' into android-recaptchaenterprise
hiteshmaurya56 4160a2a
Adds existing_api.txt file
hiteshmaurya56 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Signature format: 3.0 | ||
package com.google.firebase.appcheck.recaptchaenterprise { | ||
|
||
public class RecaptchaEnterpriseAppCheckProviderFactory implements com.google.firebase.appcheck.AppCheckProviderFactory { | ||
method public com.google.firebase.appcheck.AppCheckProvider create(com.google.firebase.FirebaseApp); | ||
method public static com.google.firebase.appcheck.recaptchaenterprise.RecaptchaEnterpriseAppCheckProviderFactory getInstance(String); | ||
} | ||
|
||
} | ||
|
53 changes: 53 additions & 0 deletions
53
appcheck/firebase-appcheck-recaptchaenterprise/firebase-appcheck-recaptchaenterprise.gradle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
plugins { | ||
id 'firebase-library' | ||
} | ||
|
||
firebaseLibrary { | ||
libraryGroup = "appcheck" | ||
releaseNotes { | ||
name.set("{{app_check}} Recaptcha Enterprise") | ||
versionName.set("appcheck-recaptchaenterprise") | ||
} | ||
} | ||
|
||
android { | ||
adbOptions { | ||
timeOutInMs 60 * 1000 | ||
} | ||
|
||
namespace "com.google.firebase.appcheck.recaptchaenterprise" | ||
compileSdkVersion project.compileSdkVersion | ||
defaultConfig { | ||
targetSdkVersion project.targetSdkVersion | ||
minSdkVersion project.minSdkVersion | ||
versionName version | ||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" | ||
} | ||
compileOptions { | ||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
|
||
testOptions.unitTests.includeAndroidResources = false | ||
} | ||
|
||
dependencies { | ||
javadocClasspath libs.autovalue.annotations | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
api project(':appcheck:firebase-appcheck') | ||
api libs.firebase.annotations | ||
api libs.firebase.common.v2200 | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
api libs.firebase.common.ktx | ||
api libs.firebase.components.v1800 | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
api libs.recaptcha.v1871 | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
testImplementation(project(":integ-testing")) { | ||
exclude group: 'com.google.firebase', module: 'firebase-common' | ||
exclude group: 'com.google.firebase', module: 'firebase-components' | ||
} | ||
testImplementation libs.androidx.test.core | ||
testImplementation libs.truth | ||
testImplementation libs.junit | ||
testImplementation libs.mockito.core.v5120 | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
testImplementation libs.robolectric | ||
} |
14 changes: 14 additions & 0 deletions
14
appcheck/firebase-appcheck-recaptchaenterprise/src/main/AndroidManifest.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> | ||
|
||
<application> | ||
<service | ||
android:name="com.google.firebase.components.ComponentDiscoveryService" | ||
android:exported="false"> | ||
<meta-data | ||
android:name="com.google.firebase.components:com.google.firebase.appcheck.recaptchaenterprise.FirebaseAppCheckRecaptchaEnterpriseRegistrar" | ||
android:value="com.google.firebase.components.ComponentRegistrar" /> | ||
</service> | ||
</application> | ||
</manifest> |
54 changes: 54 additions & 0 deletions
54
...e/firebase/appcheck/recaptchaenterprise/FirebaseAppCheckRecaptchaEnterpriseRegistrar.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
package com.google.firebase.appcheck.recaptchaenterprise; | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
import android.app.Application; | ||
import android.content.Context; | ||
import com.google.android.gms.common.annotation.KeepForSdk; | ||
import com.google.firebase.annotations.concurrent.Blocking; | ||
import com.google.firebase.annotations.concurrent.Lightweight; | ||
import com.google.firebase.appcheck.recaptchaenterprise.internal.FirebaseExecutors; | ||
import com.google.firebase.components.Component; | ||
import com.google.firebase.components.ComponentRegistrar; | ||
import com.google.firebase.components.Dependency; | ||
import com.google.firebase.components.Qualified; | ||
import com.google.firebase.platforminfo.LibraryVersionComponent; | ||
import java.util.Arrays; | ||
import java.util.List; | ||
import java.util.concurrent.Executor; | ||
|
||
/** | ||
* {@link ComponentRegistrar} for setting up FirebaseAppCheck reCAPTCHA Enterprise's dependency | ||
* injections in Firebase Android Components. | ||
* | ||
* @hide | ||
*/ | ||
@KeepForSdk | ||
public class FirebaseAppCheckRecaptchaEnterpriseRegistrar implements ComponentRegistrar { | ||
private static final String LIBRARY_NAME = "fire-app-check-recaptcha-enterprise"; | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
@Override | ||
public List<Component<?>> getComponents() { | ||
Qualified<Executor> liteExecutor = Qualified.qualified(Lightweight.class, Executor.class); | ||
Qualified<Executor> blockingExecutor = Qualified.qualified(Blocking.class, Executor.class); | ||
|
||
return Arrays.asList( | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
Component.builder(Application.class) | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
.name(LIBRARY_NAME) | ||
.add(Dependency.required(Context.class)) | ||
.factory( | ||
container -> { | ||
Context context = container.get(Context.class); | ||
return (Application) context.getApplicationContext(); | ||
}) | ||
.build(), | ||
Component.builder(FirebaseExecutors.class) | ||
.name(LIBRARY_NAME) | ||
.add(Dependency.required(liteExecutor)) | ||
.add(Dependency.required(blockingExecutor)) | ||
.factory( | ||
container -> | ||
new FirebaseExecutors( | ||
container.get(liteExecutor), container.get(blockingExecutor))) | ||
.build(), | ||
LibraryVersionComponent.create(LIBRARY_NAME, BuildConfig.VERSION_NAME)); | ||
} | ||
} |
70 changes: 70 additions & 0 deletions
70
...gle/firebase/appcheck/recaptchaenterprise/RecaptchaEnterpriseAppCheckProviderFactory.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
package com.google.firebase.appcheck.recaptchaenterprise; | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
rlazo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
import android.app.Application; | ||
import androidx.annotation.NonNull; | ||
import com.google.firebase.FirebaseApp; | ||
import com.google.firebase.appcheck.AppCheckProvider; | ||
import com.google.firebase.appcheck.AppCheckProviderFactory; | ||
import com.google.firebase.appcheck.FirebaseAppCheck; | ||
import com.google.firebase.appcheck.recaptchaenterprise.internal.FirebaseExecutors; | ||
import com.google.firebase.appcheck.recaptchaenterprise.internal.RecaptchaEnterpriseAppCheckProvider; | ||
import java.util.Map; | ||
import java.util.concurrent.ConcurrentHashMap; | ||
|
||
/** | ||
* Implementation of an {@link AppCheckProviderFactory} that builds <br> | ||
* {@link RecaptchaEnterpriseAppCheckProvider}s. This is the default implementation. | ||
*/ | ||
public class RecaptchaEnterpriseAppCheckProviderFactory implements AppCheckProviderFactory { | ||
|
||
private static FirebaseExecutors firebaseExecutors; | ||
private static final Map<String, RecaptchaEnterpriseAppCheckProviderFactory> factoryInstances = | ||
new ConcurrentHashMap<>(); | ||
private final String siteKey; | ||
private volatile RecaptchaEnterpriseAppCheckProvider provider; | ||
|
||
private RecaptchaEnterpriseAppCheckProviderFactory(@NonNull String siteKey) { | ||
this.siteKey = siteKey; | ||
} | ||
|
||
/** Gets an instance of this class for installation into a {@link FirebaseAppCheck} instance. */ | ||
@NonNull | ||
public static RecaptchaEnterpriseAppCheckProviderFactory getInstance(@NonNull String siteKey) { | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
RecaptchaEnterpriseAppCheckProviderFactory factory = factoryInstances.get(siteKey); | ||
if (factory == null) { | ||
synchronized (factoryInstances) { | ||
factory = factoryInstances.get(siteKey); | ||
if (factory == null) { | ||
factory = new RecaptchaEnterpriseAppCheckProviderFactory(siteKey); | ||
factoryInstances.put(siteKey, factory); | ||
} | ||
} | ||
} | ||
return factory; | ||
} | ||
|
||
@NonNull | ||
@Override | ||
@SuppressWarnings("FirebaseUseExplicitDependencies") | ||
public AppCheckProvider create(@NonNull FirebaseApp firebaseApp) { | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
if (provider == null) { | ||
synchronized (this) { | ||
if (provider == null) { | ||
if (RecaptchaEnterpriseAppCheckProviderFactory.firebaseExecutors == null) { | ||
firebaseExecutors = firebaseApp.get(FirebaseExecutors.class); | ||
} | ||
Application application = firebaseApp.get(Application.class); | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
provider = | ||
new RecaptchaEnterpriseAppCheckProvider( | ||
firebaseApp, | ||
application, | ||
siteKey, | ||
firebaseExecutors.getLiteExecutor(), | ||
firebaseExecutors.getBlockingExecutor()); | ||
} | ||
} | ||
} | ||
return provider; | ||
} | ||
} |
30 changes: 30 additions & 0 deletions
30
...rebase/appcheck/recaptchaenterprise/internal/ExchangeRecaptchaEnterpriseTokenRequest.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package com.google.firebase.appcheck.recaptchaenterprise.internal; | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
import androidx.annotation.NonNull; | ||
import androidx.annotation.VisibleForTesting; | ||
import org.json.JSONException; | ||
import org.json.JSONObject; | ||
|
||
/** | ||
* Client-side model of the ExchangeRecaptchaEnterpriseTokenRequest payload from the Firebase App | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
* Check Token Exchange API. | ||
*/ | ||
public class ExchangeRecaptchaEnterpriseTokenRequest { | ||
|
||
@VisibleForTesting | ||
static final String RECAPTCHA_ENTERPRISE_TOKEN_KEY = "recaptchaEnterpriseToken"; | ||
|
||
private final String recaptchaEnterpriseToken; | ||
|
||
public ExchangeRecaptchaEnterpriseTokenRequest(@NonNull String recaptchaEnterpriseToken) { | ||
this.recaptchaEnterpriseToken = recaptchaEnterpriseToken; | ||
} | ||
|
||
@NonNull | ||
public String toJsonString() throws JSONException { | ||
JSONObject jsonObject = new JSONObject(); | ||
jsonObject.put(RECAPTCHA_ENTERPRISE_TOKEN_KEY, recaptchaEnterpriseToken); | ||
|
||
return jsonObject.toString(); | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
...ain/java/com/google/firebase/appcheck/recaptchaenterprise/internal/FirebaseExecutors.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package com.google.firebase.appcheck.recaptchaenterprise.internal; | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
import com.google.firebase.annotations.concurrent.Blocking; | ||
import com.google.firebase.annotations.concurrent.Lightweight; | ||
import java.util.concurrent.Executor; | ||
|
||
/** | ||
* This class encapsulates a {@link com.google.firebase.annotations.concurrent.Lightweight} executor | ||
* and a {@link com.google.firebase.annotations.concurrent.Blocking} executor, making them available | ||
* for various asynchronous operations related to reCAPTCHA Enterprise App Check. | ||
*/ | ||
public class FirebaseExecutors { | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
private final Executor liteExecutor; | ||
private final Executor blockingExecutor; | ||
|
||
public FirebaseExecutors( | ||
@Lightweight Executor liteExecutor, @Blocking Executor blockingExecutor) { | ||
this.liteExecutor = liteExecutor; | ||
this.blockingExecutor = blockingExecutor; | ||
} | ||
|
||
public Executor getLiteExecutor() { | ||
return liteExecutor; | ||
} | ||
|
||
public Executor getBlockingExecutor() { | ||
return blockingExecutor; | ||
} | ||
} |
100 changes: 100 additions & 0 deletions
100
...e/firebase/appcheck/recaptchaenterprise/internal/RecaptchaEnterpriseAppCheckProvider.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
package com.google.firebase.appcheck.recaptchaenterprise.internal; | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
import android.app.Application; | ||
import android.util.Log; | ||
import androidx.annotation.NonNull; | ||
import androidx.annotation.VisibleForTesting; | ||
import com.google.android.gms.tasks.Task; | ||
import com.google.android.gms.tasks.Tasks; | ||
import com.google.android.recaptcha.Recaptcha; | ||
import com.google.android.recaptcha.RecaptchaAction; | ||
import com.google.android.recaptcha.RecaptchaTasksClient; | ||
import com.google.firebase.FirebaseApp; | ||
import com.google.firebase.annotations.concurrent.Blocking; | ||
import com.google.firebase.annotations.concurrent.Lightweight; | ||
import com.google.firebase.appcheck.AppCheckProvider; | ||
import com.google.firebase.appcheck.AppCheckToken; | ||
import com.google.firebase.appcheck.internal.DefaultAppCheckToken; | ||
import com.google.firebase.appcheck.internal.NetworkClient; | ||
import com.google.firebase.appcheck.internal.RetryManager; | ||
import java.nio.charset.StandardCharsets; | ||
import java.util.Objects; | ||
import java.util.concurrent.Executor; | ||
|
||
public class RecaptchaEnterpriseAppCheckProvider implements AppCheckProvider { | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
private final RecaptchaAction recaptchaAction = RecaptchaAction.custom("fire_app_check"); | ||
private final Task<RecaptchaTasksClient> recaptchaTasksClientTask; | ||
private final Executor liteExecutor; | ||
private final Executor blockingExecutor; | ||
private final RetryManager retryManager; | ||
private final NetworkClient networkClient; | ||
private static final String TAG = "rCEAppCheckProvider"; | ||
|
||
public RecaptchaEnterpriseAppCheckProvider( | ||
@NonNull FirebaseApp firebaseApp, | ||
@NonNull Application application, | ||
@NonNull String siteKey, | ||
@Lightweight Executor liteExecutor, | ||
@Blocking Executor blockingExecutor) { | ||
this.liteExecutor = liteExecutor; | ||
this.blockingExecutor = blockingExecutor; | ||
this.retryManager = new RetryManager(); | ||
this.networkClient = new NetworkClient(firebaseApp); | ||
recaptchaTasksClientTask = Recaptcha.fetchTaskClient(application, siteKey); | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
@VisibleForTesting | ||
RecaptchaEnterpriseAppCheckProvider( | ||
@Lightweight Executor liteExecutor, | ||
@Blocking Executor blockingExecutor, | ||
@NonNull RetryManager retryManager, | ||
@NonNull NetworkClient networkClient, | ||
@NonNull RecaptchaTasksClient recaptchaTasksClient) { | ||
this.liteExecutor = liteExecutor; | ||
this.blockingExecutor = blockingExecutor; | ||
this.retryManager = retryManager; | ||
this.networkClient = networkClient; | ||
this.recaptchaTasksClientTask = Tasks.forResult(recaptchaTasksClient); | ||
} | ||
|
||
@NonNull | ||
@Override | ||
public Task<AppCheckToken> getToken() { | ||
return getRecaptchaEnterpriseAttestation() | ||
.onSuccessTask( | ||
liteExecutor, | ||
recaptchaEnterpriseToken -> { | ||
ExchangeRecaptchaEnterpriseTokenRequest request = | ||
new ExchangeRecaptchaEnterpriseTokenRequest(recaptchaEnterpriseToken); | ||
return Tasks.call( | ||
blockingExecutor, | ||
() -> | ||
networkClient.exchangeAttestationForAppCheckToken( | ||
request.toJsonString().getBytes(StandardCharsets.UTF_8), | ||
NetworkClient.RECAPTCHA_ENTERPRISE, | ||
retryManager)); | ||
}) | ||
.onSuccessTask( | ||
liteExecutor, | ||
appCheckTokenResponse -> | ||
Tasks.forResult( | ||
DefaultAppCheckToken.constructFromAppCheckTokenResponse( | ||
appCheckTokenResponse))); | ||
} | ||
|
||
@NonNull | ||
private Task<String> getRecaptchaEnterpriseAttestation() { | ||
return recaptchaTasksClientTask.continueWithTask( | ||
blockingExecutor, | ||
task -> { | ||
if (task.isSuccessful()) { | ||
RecaptchaTasksClient client = task.getResult(); | ||
return client.executeTask(recaptchaAction); | ||
} else { | ||
Log.w(TAG, "Recaptcha task failed", task.getException()); | ||
throw Objects.requireNonNull(task.getException()); | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
}); | ||
} | ||
} |
2 changes: 2 additions & 0 deletions
2
...src/main/java/com/google/firebase/appcheck/recaptchaenterprise/internal/package-info.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/** @hide */ | ||
hiteshmaurya56 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
package com.google.firebase.appcheck.recaptchaenterprise.internal; |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.