Firebase dynamic link not opening the app iOS

丶灬走出姿态 提交于 2019-11-28 05:50:45

If you are on iOS 9, universal links will be used. Universal links don't work in a lot of cases, like:

  • If you use a simulator
  • If you try to open the link directly in safari on a device (typing it into the address field in the browser)

I spent a lot of time trying this and could never get it to work on a simulator in a reliable way. What I end up doing is emailing the link to me and opening it from Inbox. Then it works every time!

I'm sorry for the late reply - I hope your issue has been resolved and that this is helpful to others who may be experiencing the same problem.

There could actually be one or more issues here for iOS 9+; Dynamic Links relies on Apple's Universal Links to open the app on iOS 9+ and these suggestions are aimed at resolving issues with Universal Links and Firebase and have nothing to do with the SDK directly.

  1. Verify that the assoc file is correct at https://app_id.app.goo.gl/apple-app-site-association - it should look similar to https://maps.app.goo.gl/apple-app-site-association but with only one element in "details."
  2. As pointed out by another answer, verify that your team ID is properly set in the Firebase console.
  3. If you've long-pressed the link and then clicked "Open in Safari" or you have clicked the "goo.gl>" button on the status bar of your app after the app opens via a Universal Link, then iOS defaults to opening Universal Links in Safari. This can be fixed by pulling down on the paged opened in Safari and clicking "Open in App" (or similar) on the smart banner.

The "ibi" parameter is not involved in opening the app in a post-install click on iOS 9+, but is in prior versions when the "ius" param is not set.

Regarding iOS 8, can you try running the app and then clicking a link after the app is installed? On versions prior to iOS 9, you can test by copy/pasting the link into safari.

https://firebase.google.com/docs/dynamic-links/ios

I experienced same problem. Interestingly if you open the dynamic link in Chrome, app starts directly and successfully. But in Safari always it tries to open AppStore although the app is installed. I have no idea why Safari doesn't work in this case.

sometimes we make a mistake in Associated Domains entitlements. There have to be no spaces

applinks:mydomain.page.link

Firebase dynamic links were not working for us (on iOS9 where they use universal links) due to a problem in Firebase's assumptions during setup. Here's how we fixed the problem on our app:

Firebase asks for your "Team ID" when adding your iOS app to Firebase Console Project Settings, and it assumes that your unique app ID will be in the format TeamID.com.foo.bar

However, in our case, that was NOT our unique app ID. When I looked at our provisioning profile (on developer.apple.com I found our provisioning profile and clicked "edit"), I saw that our unique app ID was actually SomethingElse.com.foo.bar

I had to go into Firebase Console and enter that "SomethingElse" in the spot where it asked for Team ID, even though that was NOT our team ID. Once I made that change, Firebase Dynamic Links started working correctly.

It appears Firebase is making an assumption that your unique app ID will always start with your Team ID, which is apparently not always the case.

Note that changing your Team ID can take a significant amount of time to take effect. You can see that the change has happened by checking the appropriate link for your app_id (https://app_id.app.goo.gl/apple-app-site-association).

Experienced the same problem.

The solution for me was to use the

Identifiers -> App IDs -> 'my.app.ID' -> Prefix

You can find it on: https://developer.apple.com/account/ios/identifier/bundle

Instead of the 'DevelopmentTeam' number from the .pbxproj which I used and add it to the Team ID for my iOS app in the Firebase console.

And don't forget to download and add a new .plist to the project.

When link is open in safari, It shows a "open (project name)"button. If this button is pressed for 2-3 second, It asks for opening that into different apps for first time.It also shows your app name. If you select your app, It opens your app. After doing that if you again open this link and press button in safari, it always work fine.

This fixed the problem for me.

Hello guys i have a great new.

I always listen that it's IMPOSSIBLE test a dynamic link on simulator.

But we discovered this, and now WE CAN test firebase dynamic link on simulator

https://stackoverflow.com/a/56385506/6273003

Make sure you have a Team Id set in the firebase console for you app. (you will then need to download and import the .plist file).

This fixed the problem for me.

After integrating Firebase Dynamic links, the sample link started working immediately on a device with iOS 8. For iOS 9 devices Universal links mechanism is used, as mentioned by other answers. This means Apple needs to update the entitlement data used to verify deep link dual authentication. This may take 48 hours, according to Apple's App Search API Validation Tool.

There are more Universal links troubleshooting tips here.

If none of the above workarounds work for you, please check if you have added activitycontinuation in associated domains or not.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!