我们正在努力解决来自谷歌的应用索引主题。计划是在网站的 -area 中插入一个标签(来自谷歌),如下所示:
android-app://com.testApp/myCustomScheme/car/ford
然后用智能手机访问这个网站,应用程序应该打开。但这行不通...
安卓清单:
在 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>
appPackage 是:“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" />
...
问题:
当我使用此代码访问网站时,我的应用程序没有打开。
使用谷歌的 deeplink-test-tool 测试深层链接后,一切正常(https://developers.google.com/app-indexing/webmasters/test)
也许我对这个功能有一个错误的理解......但是每次我用我的移动浏览器访问这个网站(并且安装了应用程序)时,应用程序应该同时启动,对吗?
是否有必要在 google 搜索控制台中执行任何进一步的操作?
更新:
@ArunL 的答案是您必须完成的整个过程的一部分,才能获得有效的解决方案。感谢您的信息和帮助。
谷歌本身的指南对正确实施非常有帮助: http ://search-codelabs.appspot.com/codelabs/web-deep-linking#1
另一个有用的工具是来自 Google 的网站管理员工具:https: //www.google.com/webmasters/tools/
在那里,您可以上传 LOCAL .apk 以使用不在“生产/实时”中的真实 apk 测试/获取您的深度链接实现
您还可以使用 Play Store 上的 .apk 测试您的 impl。
谢谢你的时间,伊利亚斯