【apicloud】打开淘宝/京东/天猫/拼多多APP并跳转至相关页面

在自己的APP中打开淘宝APP并跳转至相关页面。


淘宝:

var url = '';   //链接自己换 
api.openApp({
	androidPkg: 'android.intent.action.VIEW' ,
	uri:'intent://'+url.replace("https://","")+'#Intent;scheme=taobao;package=com.taobao.taobao;end'
},function(ret, err) {
	if (ret) {
		alert(JSON.stringify(ret));
	} else {
		alert(JSON.stringify(err));
	}
});


京东:

var url = 'https://uland.taobao.com/coupon';  //链接自己换
api.openApp({
    androidPkg: 'android.intent.action.VIEW' ,
    uri:'intent://'+url.replace("https://","")+'#Intent;scheme=openapp.jdmoble://;package=com.jingdong.app.mall;end'
},function(ret, err) {
    if (ret) {
        alert(JSON.stringify(ret));
    } else {
        alert(JSON.stringify(err));
    }
});



手机天猫:

var url = '';   //链接自己换 
api.openApp({
    androidPkg: 'android.intent.action.VIEW' ,
    uri:'intent://'+url.replace("https://","")+'#Intent;scheme=tmall://tmallclient/;package=com.tmall.wireless;end'
},function(ret, err) {
    if (ret) {
        alert(JSON.stringify(ret));
    } else {
        alert(JSON.stringify(err));
    }
});



拼多多:

var url = '';   //链接自己换 
api.openApp({
    androidPkg: 'android.intent.action.VIEW' ,
    uri:'intent://'+url.replace("https://","")+'#Intent;scheme=pinduoduo;package=com.xunmeng.pinduoduo;end'
},function(ret, err) {
    if (ret) {
        alert(JSON.stringify(ret));
    } else {
        alert(JSON.stringify(err));
    }
});


url可替换为自己需求的链接。

猿教程
请先登录后发表评论
  • 最新评论
  • 总共0条评论