wwWallet core documentation
    Preparing search index...
    • Decrypts and validates access token structure, type, and client binding.

      Token-type and client checks prevent unauthorized protected-resource access.

      • RFC 6750 (OAuth 2.0 Bearer Token Usage) Section 2, bearer token usage at resource servers
      • RFC 6749 (OAuth 2.0 Authorization Framework) Section 7, protected resource access
      • OpenID4VCI, credential endpoint token validation expectations

      Parameters

      Returns Promise<
          {
              access_token: string;
              client: OauthClient;
              scope: string;
              sub: string;
          },
      >