I was wondering if you are working on a solution for app bridge 4.
Especially for embedded apps to redirect to the targetUrl in the iframe_redirect.html file.
If I see it correctly it is no longer possible to use the Redirect method.
I tried the following solutions but they don't seem to work:
const targetUrl = '{{ redirect_uri|safe }}';
window.open(targetUrl, "_top");
or
const targetUrl = '{{ redirect_uri|safe }}';
navigation.navigate(targetUrl, {
history: 'push',
});
Any help would be greatly appreciated.
And thanks a lot for maintaining this repository
I was wondering if you are working on a solution for app bridge 4.
Especially for embedded apps to redirect to the
targetUrlin the iframe_redirect.html file.If I see it correctly it is no longer possible to use the Redirect method.
I tried the following solutions but they don't seem to work:
or
Any help would be greatly appreciated.
And thanks a lot for maintaining this repository