firebase Dynamic链接从Instagram访问时而不是打开应用

发布于 2025-01-22 17:05:58 字数 172 浏览 0 评论 0原文

Firebase Dynamic Link在Instagram中单击链接时未打开应用程序,它将打开PlayStore,如果我使用WhatsApp,Chrome或消息应用程序访问相同的链接,它将打开应用程序并导航到我想要的特定位置。

已经在AndroidManifest文件中添加了Autoverify = true。

Firebase dynamic link is not opening the app when the link is clicked from the Instagram, it opens PlayStore while if I access the same link with WhatsApp, Chrome, or message app it opens the app and navigates to a specific location where I want.

Already added autoVerify=true in AndroidManifest file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

私藏温柔 2025-01-29 17:05:59

您还需要添加主机和方案

在意图过滤器中,请在下面进行调查
或检查
https://develoder.android.com/training.com/training/app-epp-links/app-inp--链接

<intent-filter android:autoVerify="true">
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />

    <!-- Accepts URIs that begin with "http://www.example.com/gizmos" !-->
    <data android:scheme="http"
          android:host="www.example.com"
          android:pathPrefix="/gizmos" />
    <!-- note that the leading "/" is required for pathPrefix-->
</intent-filter>




<intent-filter android:autoVerify="true" >
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />

    <!-- Accepts URIs that begin with "example://gizmos" !-->
    <data android:scheme="example"
          android:host="gizmos" />

</intent-filter>

You need to add host and scheme also

in intent-filter Please refere below code
or check
https://developer.android.com/training/app-links/deep-linking

<intent-filter android:autoVerify="true">
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />

    <!-- Accepts URIs that begin with "http://www.example.com/gizmos" !-->
    <data android:scheme="http"
          android:host="www.example.com"
          android:pathPrefix="/gizmos" />
    <!-- note that the leading "/" is required for pathPrefix-->
</intent-filter>




<intent-filter android:autoVerify="true" >
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />

    <!-- Accepts URIs that begin with "example://gizmos" !-->
    <data android:scheme="example"
          android:host="gizmos" />

</intent-filter>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文