mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-03 21:37:41 +08:00
feat(router): send openurl_if_required post_message in external 3ds flow for return_url redirection from sdk (#4642)
This commit is contained in:
committed by
GitHub
parent
040d85826a
commit
bf06a5b511
@ -1168,7 +1168,7 @@ pub fn get_html_redirect_response_for_external_authentication(
|
|||||||
try {{
|
try {{
|
||||||
// if inside iframe, send post message to parent for redirection
|
// if inside iframe, send post message to parent for redirection
|
||||||
if (window.self !== window.parent) {{
|
if (window.self !== window.parent) {{
|
||||||
window.top.postMessage({{openurl: return_url}}, '*')
|
window.top.postMessage({{openurl_if_required: return_url}}, '*')
|
||||||
// if parent, redirect self to return_url
|
// if parent, redirect self to return_url
|
||||||
}} else {{
|
}} else {{
|
||||||
window.location.href = return_url
|
window.location.href = return_url
|
||||||
@ -1176,7 +1176,7 @@ pub fn get_html_redirect_response_for_external_authentication(
|
|||||||
}}
|
}}
|
||||||
catch(err) {{
|
catch(err) {{
|
||||||
// if error occurs, send post message to parent and wait for 10 secs to redirect. if doesn't redirect, redirect self to return_url
|
// if error occurs, send post message to parent and wait for 10 secs to redirect. if doesn't redirect, redirect self to return_url
|
||||||
window.top.postMessage({{openurl: return_url}}, '*')
|
window.top.postMessage({{openurl_if_required: return_url}}, '*')
|
||||||
setTimeout(function() {{
|
setTimeout(function() {{
|
||||||
window.location.href = return_url
|
window.location.href = return_url
|
||||||
}}, 10000);
|
}}, 10000);
|
||||||
|
|||||||
Reference in New Issue
Block a user