android – 从Chrome到本机应用程序的深层链接
作者:互联网
我正在使用Uber API,它使用uber://?… URL深入链接到Uber原生应用程序.我正在建立一个移动网站,我正在构建其中一个URL as described here;
在iOS上一切正常,但在Android上Uber应用程序打开,只获得一个参数product_id.所以我认为我对如何编码URL以及Android系统如何打开它存在一些问题.这是我构建URL的JS:
uber.createURL = function() {
var params = {
"client_id": uber.CLIENT_ID,
"product_id": maps.product_id,
"pickup[latitude]": maps.noSurgeMarker.getPosition().lat(),
"pickup[longitude]": maps.noSurgeMarker.getPosition().lng(),
"dropoff[latitude]": maps.destMarker.getPosition().lat(),
"dropoff[longitude]": maps.destMarker.getPosition().lng(),
"pickup[formatted_address]": $('#pickup').val(),
"dropoff[formatted_address]": $('#destination').val()
};
var url = 'uber://?action=setPickup';
for (var key in params) {
if (params.hasOwnProperty(key)) {
url += ('&' + key + '=' + encodeURIComponent(params[key]));
}
}
return url;
};
然后我调用以下代码打开链接:
var url = uber.createURL();
window.location.href = url;
我错过了一些明显的东西吗同样,这适用于iOS,但不适用于Android.另外奇怪的是,如果我在计算机上使用createURL生成URL,使用PushBullet将其发送到我的Android设备,打开它可以很好地工作.但是,如果我通过Chrome for Android获取网址,Uber应用程序会打开并且只有product_id正确,而不是任何拾取或下降部分.
注意:我已经使用jQuery的params函数进行了修改,但是没有更好的工作,这就是为什么我去手册(para key in params){…}循环.
解决方法:
好吧,我发现这不是编码问题,而是Chrome如何启动应用程序的意图.这是Pushbullet的一个意图,这个工作正常:
I/ActivityManager( 942): START u0
{act=android.intent.action.VIEW
dat=uber://?
client_id=REDACTED&
action=setPickup&
product_id=a1111c8c-c720-46c3-8534-2fcdd730040d&
pickup[latitude]=37.780654&
pickup[longitude]=-122.405599&
dropoff[latitude]=37.7970558&
dropoff[longitude]=-122.43199099999998
flg=0x10000000 cmp=com.ubercab/.client.feature.launch.LauncherActivity} from pid 19023
这是来自Chrome的一个意图,这个推出Uber应用程序,但没有任何数据被应用程序解析(它只是打开就像我点击了启动器图标一样):
I/ActivityManager( 942): START u0
{act=android.intent.action.VIEW
cat=[android.intent.category.BROWSABLE]
dat=uber://?
client_id=REDACTED&
action=setPickup&
product_id=a1111c8c-c720-46c3-8534-2fcdd730040d&
pickup[latitude]=37.780654&
pickup[longitude]=-122.405599&
dropoff[latitude]=37.7970558&
dropoff[longitude]=-122.43199099999998
flg=0x10000000 cmp=com.ubercab/.client.feature.launch.LauncherActivity (has extras)} from pid 26446
您可以看到唯一的区别是添加了cat = [android.intent.category.BROWSABLE],这是从Chrome for Android(reference)启动的意图所需要的.
总的来说,我认为这是优步必须要解决的问题.现在,如果我希望它可以工作,我似乎必须将我的网站打包到Android应用程序中的WebView.
标签:deep-linking,android,ios,google-chrome,uber-api 来源: https://codeday.me/bug/20190830/1766612.html