-
-
Notifications
You must be signed in to change notification settings - Fork 150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
iOS - Firebase Dynamic Link doesn't redirect to the app when open through Safari #31
Comments
@cmohanraj10 I'm experiencing the same issue. Safari app won't redirect and Chrome redirects. |
Same issue here. And for now I'm working on a simulator, so there is no way to test if it works on another browser... |
Same problem here. It just wont open the IOS app. Anyone found a solution? |
I had the same problem and solved adding the page link domain to Xcode. You will find the option under project target > Signing & Capabilities > Associated Domains I hope it helps someone |
It doesn't work even with #31 (comment) for me |
I also already added associated domains and it's not working for me as well, it redirects me to open link in app page and correctly bringing me to my app on appstore. Would it be because I'm on a debug build? EDIT: |
Hi! |
I have added this plugin in my app, when I open in iPhone link through Google Chrome, it redirects me to the app, but when I'm trying to open app through Safari, it doesn't open the app.
<plugin name="cordova-plugin-firebase-dynamiclinks" source="npm" spec="0.13.2">
<param name="APP_DOMAIN" value="example.com" />
<param name="PAGE_LINK_DOMAIN" value="example.page.link" />
<param name="FIREBASE_DYNAMIC_LINKS_VERSION" value="11.8.0" />
</plugin>
Deep link :
https://example.page.link/hQk3
iOS link settings :
Handling code on Device Ready :
cordova.plugins.firebase.dynamiclinks.onDynamicLink(function(data){
var data = JSON.stringify(data);
var obj = JSON.parse(data);
alert("Deep Link: "+obj.deepLink);
});
Even through Chrome, sometimes it opens the App Store and previous deep link value returning instead of the current one.
What can be wrong and how is possible to fix that?
The text was updated successfully, but these errors were encountered: