IGPAPI
    Preparing search index...

    Function AndroidCreateAndroidPlayIntegrityAttestation

    • POST /api/v1/attestation/create_android_playintegrity/.

      The endpoint gives us the server nonce that the final registration request reports in x-ig-attest-params. On an emulator the captured app reports errors: [-3] with an empty integrity token.

      Parameters

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

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