[Question] dynamic link did not open app store when app is not installed
See original GitHub issue[REQUIRED] Please fill in the following fields:
- Unity editor version: 2020.3.29f1
- Firebase Unity SDK version: 8.8.0
- Source you installed the SDK: .unitypackage (.unitypackage or Unity Package Manager)
- Problematic Firebase Component: Dynamic Links
- Other Firebase Components in use: Auth, Database
- Additional SDKs you are using: Facebook
- Platform you are using the Unity editor on: Mac
- Platform you are targeting: iOS (iOS, Android, and/or desktop)
- Scripting Runtime: IL2CPP (Mono, and/or IL2CPP)
[REQUIRED] Please describe the question here:
I want to generate short dynamic links inside the app for every user. I managed to do it for android users but in iOS the short links launch website instead of app store page.
Heres my code
// CREATES LONG DYNAMIC LINK var components = new Firebase.DynamicLinks.DynamicLinkComponents( // The base Link. new System.Uri("https://example.com/?"), // The dynamic link URI prefix. "https://example.page.link") { IOSParameters = new Firebase.DynamicLinks.IOSParameters("com.Example.Example"), AndroidParameters = new Firebase.DynamicLinks.AndroidParameters("com.Example.ExampleApp"), }; var options = new Firebase.DynamicLinks.DynamicLinkOptions { PathLength = DynamicLinkPathLength.Short, };
I found this post but couldn’t figure out how to add isi parameter to my uri
Issue Analytics
- State:
- Created a year ago
- Comments:9
Top GitHub Comments
Hey I solved the issue
Heres how I solved:
Hey @SonmezYigithan. We need more information to resolve this issue but there hasn’t been an update in 5 weekdays. I’m marking the issue as stale and if there are no new updates in the next 5 days I will close it automatically.
If you have more information that will help us get to the bottom of this, just add a comment!