我正在尝试为我的应用程序测试应用程序链接,但没有成功。我在我的开发机器上创建了一个简单的 IIS Web 应用程序,其中包含一个 test.html 页面:
<html>
<head>
<title>test</title>
<meta property="al:android:package" content="com.test.debug">
<meta property="al:android:app_name" content="test">
</head>
<body>
<H1>123</H1>
</body>
</html>
在我的 AndroidManifast.xml 中,我插入了以下意图过滤器:
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
现在从 android 设备的浏览器我转到我的开发机器中的 url。即http://10.1.10.125/testFB/test.html,并分享页面。
然后从我的 facebook 应用程序的墙上单击链接。但应用程序没有打开 - 它在内部 web 视图中显示网页。
我也尝试使用架构(从 facebook 文档复制)但没有成功。
我究竟做错了什么?