Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

This step is only required if the response from the 3DS Auth API (Step 3) indicates the challengeRequired property is true. Inside this response will be another redirectUrl property.

There are two possible flows:

  1. ACS challenge iframe

  2. Full browser redirect to ACS challenge page (If a merchantRedirectUrl was provided in the Init Call in Step 1)

ACS challenge iframe

If a merchantRedirectUrl was not supplied, create an iframe to contain the ACS challenge.

Set up iframe html

Use the redirectUrl as the src property. This is what the iframe might look like:

<iframe
    src={redirectUrl}
    title="ACS"
    style="width: 100%; height: 100vh"
></iframe>

Note the iframe width and height

The default size of the challenge iframe will be full screen. However, if the acsWindowSize property was specified in the 3DS init call (Step One), then the iframe must have the same width and height as the acsWindowSize provided.

  • No labels