IO Wallet SDK
    Preparing search index...
    • Method that completes the form_post.jwt based authorization process for credentials issuance following the ITWallet specification by retrieving the form from the provided uri, extracting and parsing the contained JWT and verifying the iss and state fields match the authorization session's expected values. See https://italia.github.io/eid-wallet-it-docs/versione-corrente/en/credential-issuance-low-level.html# steps 6-7 for details.

      Returns Promise<
          {
              decodedJwt: DecodeJwtResult<
                  undefined,
                  ZodType<
                      { code: string; iss: string; state: string },
                      unknown,
                      $ZodTypeInternals<{ code: string; iss: string; state: string }, unknown>,
                  >,
              >;
              jwt: string;
          },
      >

      An object containing the fetched JWT and its decoding. The JWT contains the access code necessary for access token issuance