Indicates weather this token was already consumed. If this is the first time AppCheck.verifyToken() method has seen this token, this field will contain the value false. The given token will then be marked as already_consumed for all future invocations of this AppCheck.verifyToken() method for this token.When this field is true, the caller is attempting to reuse a previously consumed token. You should take precautions against such a caller; for example, you can take actions such as rejecting the request or ask the caller to pass additional layers of security checks.
Indicates weather this token was already consumed. If this is the first time AppCheck.verifyToken() method has seen this token, this field will contain the value false. The given token will then be marked as already_consumed for all future invocations of this AppCheck.verifyToken() method for this token.
When this field is true, the caller is attempting to reuse a previously consumed token. You should take precautions against such a caller; for example, you can take actions such as rejecting the request or ask the caller to pass additional layers of security checks.
Signature:
alreadyConsumed?:boolean;
VerifyAppCheckTokenResponse.appId
The App ID corresponding to the App the App Check token belonged to.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-05-09 UTC."],[],[],null,["Interface representing a verified App Check token response.\n\n**Signature:** \n\n export interface VerifyAppCheckTokenResponse \n\nProperties\n\nVerifyAppCheckTokenResponse.alreadyConsumed\n\nIndicates weather this token was already consumed. If this is the first time [AppCheck.verifyToken()](./firebase-admin.app-check.appcheck.md#appcheckverifytoken) method has seen this token, this field will contain the value `false`. The given token will then be marked as `already_consumed` for all future invocations of this [AppCheck.verifyToken()](./firebase-admin.app-check.appcheck.md#appcheckverifytoken) method for this token.\n\nWhen this field is `true`, the caller is attempting to reuse a previously consumed token. You should take precautions against such a caller; for example, you can take actions such as rejecting the request or ask the caller to pass additional layers of security checks.\n\n**Signature:** \n\n alreadyConsumed?: boolean;\n\nVerifyAppCheckTokenResponse.appId\n\nThe App ID corresponding to the App the App Check token belonged to.\n\n**Signature:** \n\n appId: string;\n\nVerifyAppCheckTokenResponse.token\n\nThe decoded Firebase App Check token.\n\n**Signature:** \n\n token: DecodedAppCheckToken;"]]