From 712ac5ba3fff9f535315cb21b54a38e0d7dbc50d Mon Sep 17 00:00:00 2001 From: Yvonne Pan <103622026+yvonnep165@users.noreply.github.com> Date: Mon, 14 Sep 2026 10:57:22 -0400 Subject: [PATCH 1/2] remove beta from the NE_TIME_USE_TOKEN_VERIFICATION_URL_FORMAT --- src/app-check/app-check-api-client-internal.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app-check/app-check-api-client-internal.ts b/src/app-check/app-check-api-client-internal.ts index 54f6462539..e7950ab0ad 100644 --- a/src/app-check/app-check-api-client-internal.ts +++ b/src/app-check/app-check-api-client-internal.ts @@ -28,7 +28,7 @@ import { AppCheckToken, AppCheckTokenOptions } from './app-check-api'; // App Check backend constants const FIREBASE_APP_CHECK_V1_API_URL_FORMAT = 'https://firebaseappcheck.googleapis.com/v1/projects/{projectId}/apps/{appId}:exchangeCustomToken'; -const ONE_TIME_USE_TOKEN_VERIFICATION_URL_FORMAT = 'https://firebaseappcheck.googleapis.com/v1beta/projects/{projectId}:verifyAppCheckToken'; +const ONE_TIME_USE_TOKEN_VERIFICATION_URL_FORMAT = 'https://firebaseappcheck.googleapis.com/v1/projects/{projectId}:verifyAppCheckToken'; const FIREBASE_APP_CHECK_CONFIG_HEADERS = { 'X-Firebase-Client': `fire-admin-node/${utils.getSdkVersion()}` From e842ba47cf2d347bba1238f3fd2e7cfd2ec401ce Mon Sep 17 00:00:00 2001 From: Yvonne Pan <103622026+yvonnep165@users.noreply.github.com> Date: Mon, 14 Sep 2026 11:10:00 -0400 Subject: [PATCH 2/2] update the endpoint in tests --- test/unit/app-check/app-check-api-client-internal.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/app-check/app-check-api-client-internal.spec.ts b/test/unit/app-check/app-check-api-client-internal.spec.ts index 2180b93a1c..191ba43d00 100644 --- a/test/unit/app-check/app-check-api-client-internal.spec.ts +++ b/test/unit/app-check/app-check-api-client-internal.spec.ts @@ -490,7 +490,7 @@ describe('AppCheckApiClient', () => { expect(alreadyConsumed).to.equal(true); expect(stub).to.have.been.calledOnce.and.calledWith({ method: 'POST', - url: 'https://firebaseappcheck.googleapis.com/v1beta/projects/test-project:verifyAppCheckToken', + url: 'https://firebaseappcheck.googleapis.com/v1/projects/test-project:verifyAppCheckToken', headers: EXPECTED_HEADERS, data: { app_check_token: TEST_TOKEN_TO_EXCHANGE } });