如果已安装,如何从我的网站创建链接以指向我的应用程序

how to make links from my website to direct to my app if installed

我想达到的目标

当用户点击我网站上的任何 link 时,我希望它在我的应用程序(如果已安装)中引导用户特定 link。如果未安装,则将用户引导至浏览器中的 link。

示例:

用户收到一封电子邮件,其中包含 link,名为:www.myapp.com/someplaceinmyapp 如果已安装,它会转到我的应用程序中的那个页面。如果没有,则在浏览器中转到该页面。

请记住,它适用于我应用中的所有页面。所以这适用于我网页上的任何 link。

我的问题

这个有具体的名称吗?我知道 deep linking 和 app links,但我不确定哪一个适合我。

这可能吗?我什至不确定目前是否可能。

这个代码是在网页还是在应用程序中?例如:Javascript 或 Kotlin 或清单文件中的其他内容。

我该怎么做?这可能是我最需要的东西。

备注

我的网页中有一些东西显示了一个弹出窗口(仅在浏览器中),上面写着“使用应用程序”。如果未安装,则转到 Play 商店。如果已安装,则在我的应用程序中转到我网站的主页。我从 here 找到了如何使用得票最多的答案(不是被接受的答案)来做到这一点,所以在我的清单中我有:

        <intent-filter>
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />
            <data android:scheme="http"
                android:host="www.myapp.com"
                android:pathPrefix="/install.html" />
        </intent-filter>

如果你有任何想补充的问题,我很乐意补充。

在您的应用中使用 Android 应用链接。如果实施得当,用户将直接移动到应用中的指定目的地。

这些文档中有关此内容的更多信息:

Verify Android App Links

Create an implicit deep link

用于从 url 输入您的应用程序的特定 ActivityFragment,使用导航中的 Deep Links推荐组件。

1.在导航资源文件中添加一个 Url Deep Link(来自属性面板):

<fragment
    android:id="@+id/studentEditorFragment"
    android:name="com.example.roomtest.studentEditor.StudentEditorFragment"
    android:label="StudentEditorFragment"
    tools:layout="@layout/fragment_student_editor">

    <argument
        android:name="studentId"
        app:argType="long" />

    <deepLink
        android:id="@+id/deepLink"
        app:uri="www.example.com/roomTest/{studentId}" />       //here, company domain name followed by application path or argument

</fragment>

2。在 AndroidManifest 文件中添加导航属性:

<activity android:name=".MainActivity">                 //【inside the "<activity>" tag】
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />

        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>

    <nav-graph android:value="@navigation/navigation" />        //here
</activity>

3。在网络浏览器或短信中使用 link:“www.example.com/roomTest/-1”

  • 传递多个参数,只需用“&”连接即可,如:“www.example.com/roomText/-1&true”(根据提示重新格式化xml中的“&”)。

我发现这样做的方法是使用 App Links 助手,您可以在 android studio 的工具 -> App Links 助手下找到它。这是打开后应该在侧面看到的内容:

步骤 1

点击“打开URL映射编辑器”,然后添加一个URL映射(点击“+”)。 在主机中,将您的网站 link 例如:https://www.example.com。对于 Path,在 select 框中,select 只是“路径”,在类型框中不输入任何内容。

步骤 2

Select Activity 按钮对 Kotlin 不起作用,所以这里是您需要手动输入的代码。

    override fun onNewIntent(intent: Intent) {
    super.onNewIntent(intent)
    handleIntent(intent)
}

private fun handleIntent(intent: Intent) {
    val wbWebView = findViewById<View>(R.id.your_webview) as WebView
    val appLinkAction = intent.action
    val appLinkData = intent.data
    if (Intent.ACTION_VIEW == appLinkAction && appLinkData != null) {
            wbWebView.loadUrl(appLinkData.toString())
    } else {
        // default link that it goes to when opening app
        wbWebView.loadUrl("https://www.example.com")
    }
}

并在您的 onCreate 中添加 handleIntent(intent)

步骤 3

单击“打开数字资产 Links 文件生成器”。大部分信息都已经填好了,所以你可以继续点击“生成数字资产Links文件”。在您的网站中创建一个名为“.well-known”的文件夹,然后将一个名为“assetlinks.json”的文件放入其中,将预览粘贴到其中。所以当你去 https://www.yourwebsite.com/.well-known/assetlinks.json you should be able to see the Digital asset links file. You can also see other websites Digital asset links file. Like for google, https://www.google.com/.well-known/assetlinks.json.

然后继续单击“Link 并验证”按钮,如果一切顺利,您应该会在按钮下方看到以下内容:

第 4 步

测试时间到了!继续并单击“测试应用程序 links”并从您的网站输入 URL。如果一切顺利,你应该不会看到消歧对话。

我还想通过给自己发送一封包含 link 的电子邮件来做进一步的测试。

注释

如果您的网站使用 https 而不是 http,则只能使用应用程序 Links 助手。

我在清单中的 activity 标签中添加了 android:launchMode="singleTask",这意味着如果您在电子邮件中单击您网站上的 link,它将在新的window.

他们有一个关于此 here 的文档,其中包括一个视频(请记住,他们正在使用 java)