You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To finish the 3D secure authorization HTTP post must be called to the acs url.
<html>
<head>
<title>3-D Secure Example</title>
<script type="text/javascript">
functionOnLoadEvent()
{
// Make the form post as soon as it has been loaded.
document.ThreeDForm.submit();
}
</script>
</head>
<body onload="OnLoadEvent();"> <p> If your browser does not start loading the page, press the button below. You will be sent back to this site after you authorize the transaction. </p> <form name="ThreeDForm" method="POST" action="{$threeds2AuthorizationInfo->getAcsUrl()}">
<button type=submit>Click Here</button>
<input type="hidden" name="creq" value="{$threeds2AuthorizationInfo->getCReq()}" />
<input type="hidden" name="threeDSSessionData" value="{your_identifier}" />
</form>
</body>
</html>