App Indexing Android - “<head>”中的“<link>”不起作用

App Indexing Android - "<link>" in "<head>" doesn't work

我们正在努力解决来自 google 的应用程序索引主题。 计划是在网站的区域中插入一个标签(从 google 爬取),如下所示:

android-app://com.testApp/myCustomScheme/car/ford

然后用智能手机访问这个网站,应用程序应该会打开。但这是行不通的...

AndroidManifest:

我们在 AndroidManifest 中插入了以下代码:

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

<data android:scheme="myCustomScheme"
     android:host="car"
     android:pathPrefix="/ford"/>
</intent-filter>

应用程序包是:"com.testApp"。

HTML-代码:

<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge;chrome=1">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="format-detection" content="telephone=no">

<link rel="alternate" href="android-app://com.testApp/myCustomScheme/car/ford" />
...

问题:

当我使用此代码访问网站时,我的应用程序无法打开。

使用 google 的 deeplink-test-tool 测试深层链接后,一切正常 (https://developers.google.com/app-indexing/webmasters/test)

也许我对这个功能有错误的理解......但是每次我用我的移动浏览器访问这个网站(并且安装了应用程序)应用程序应该同时启动,对吗?

是否需要在 google 搜索控制台中执行任何进一步的操作?

更新:

@ArunL 的回答是您为获得可行的解决方案而必须完成的整个过程的一部分。感谢您的信息和帮助。

google 本身的指南对正确实施非常有帮助: http://search-codelabs.appspot.com/codelabs/web-deep-linking#1

另一个有用的工具是来自 Google 的网站管理员工具: https://www.google.com/webmasters/tools/

在那里你可以上传一个本地 .apk 到 test/fetch 你的深度链接实现与一个真正的 apk 不在 "production / live"

您也可以使用 Play 商店中的 .apk 测试您的 impl。

感谢您的宝贵时间, 伊利亚斯

它仅适用于 google 搜索结果页面。如果您的网站已正确编入索引并出现在 google 搜索结果中,请检查 google 缓存内容中的网站页面源是否存在:http://webcache.googleusercontent.com/search?q=cache:yourwebsite.com.

此外,如果您的 apk 在 Google Play Developer Console 中处于 BETA 测试阶段,您可能需要将其移至生产版。