Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase Dynamic Link doesn't redirect to the app when open through Safari

I have added Firebase Dynamic Link 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 (I'm opening links through the Notes, not directly from the Safari), it doesn't open the app.

I'm testing on real device, not in simulator.

I have followed official Firebase Dynamic Links Tutorial.

What can be wrong and how is possible to fix that?

like image 958
Lucky_girl Avatar asked Feb 28 '18 13:02

Lucky_girl


People also ask

Do Firebase dynamic links work on iOS?

With Firebase Dynamic Links, you can direct users to either an IOS or Android app from a page, email, or text. If they don't have the app installed, these links can drive users to the appropriate mobile store listing.

How do Firebase dynamic links work?

Dynamic Links are smart URLs that allow you to send existing and potential users to any location within your iOS or Android app. They survive the app install process, so even new users see the content they're looking for when they open the app for the first time. Dynamic Links are no-cost forever, for any scale.

Do Firebase dynamic links expire?

The created short Dynamic Link will not expire. Repeated calls with the same long Dynamic Link or Dynamic Link information will produce the same short Dynamic Link. The Dynamic Link domain in the request must be owned by requester's Firebase project.

How do I use Firebase dynamic links to shorten URL?

Steps: Go to Dynamic Links in the Grow section of the Firebase Console's sidebar and follow the Get Started instructions. Click the New Dynamic Link button. Choose a prefix for the new URL.


1 Answers

My problem was that in Xcode in Capabilities Tab in Associated Domains, in Domains field, I wrote wrong domain, instead of appplinks:app_id.app.goo.gl I wrote: appplinks:app_id.goo.gl, so i missed .app, after app_id, after changing it, it starts work correctly!

like image 123
Lucky_girl Avatar answered Nov 01 '22 06:11

Lucky_girl