IGPAPI
    Preparing search index...

    Function AndroidCreateAndroidKeystoreAttestation

    • POST /api/v1/attestation/create_android_keystore/.

      Real Android can sign the nonce with the device keystore. Emulators often cannot, and the captured registration flow reports errors: [-1013] in the final x-ig-attest-params header while still using the returned challenge nonce as real request state.

      Parameters

      • input: {
            clientEndpoint?: string;
            errors?: readonly number[];
            keyHash?: string;
            signedNonce?: string;
        } = {}

      Returns Effect<
          {
              challengeNonce: string;
              errors: readonly number[];
              keyHash: string;
              signedNonce: string;
          },
          IgApiError
          | RequestError
          | ParseError
          | TransportError,
          PlainJsonApiHttp | MobileDevice,
      >