App Bridge React, how to redirect an embedded React app to subscription confirmation URL?

Hi @Nikola_Milovic

Which version of AppBridge are you using?

In v3 and below, I used the redirect module to perform external redirects:


        // redirect the merchant to the subscription page
        redirect.dispatch(Redirect.Action.REMOTE, {
          url: confirmationUrl,
          newContext: false,
        });

But in AppBridge v4, you can use the window directly I believe:


// redirect the merchant to the subscription page
window.open(confirmationUrl, '_top')
1 Like