IO Wallet SDK
    Preparing search index...

    Interface ParseAccessTokenRequestResult

    interface ParseAccessTokenRequestResult {
        accessTokenRequest:
            | {
                code: string;
                code_verifier: string;
                grant_type: "authorization_code";
                redirect_uri: string;
            }
            | { grant_type: "refresh_token"; refresh_token: string; scope?: string };
        clientAttestation: {
            clientAttestationPopJwt: string;
            walletAttestationJwt: string;
        };
        dpop: { jwt: string };
        grant: ParsedAccessTokenRequestGrant;
        pkceCodeVerifier?: string;
    }
    Index

    Properties

    accessTokenRequest:
        | {
            code: string;
            code_verifier: string;
            grant_type: "authorization_code";
            redirect_uri: string;
        }
        | { grant_type: "refresh_token"; refresh_token: string; scope?: string }
    clientAttestation: {
        clientAttestationPopJwt: string;
        walletAttestationJwt: string;
    }

    The client attestation jwts from the access token request headers

    dpop: { jwt: string }

    The dpop jwt from the access token request headers

    grant: ParsedAccessTokenRequestGrant
    pkceCodeVerifier?: string

    The pkce code verifier from the access token request