微信瀏覽器中H5使用wx-open-launch-app開啟第三方APP
阿新 • • 發佈:2021-08-10
1、在微信開放平臺配置關聯相關APP、微信小程式、微信公眾號;
2、在微信公眾號中設定安全域名;
3、在開放者平臺中的APP配置關聯JS網頁安全域名;
4、把相關Html頁面程式碼放到對應域名下;
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no"> <title>Demo</title> </head> <body> <div id="app"> <wx-open-launch-weapp path="pages/index/index" id="launch-wxapp" username="gh_12"> <template> <style> .btn { padding: 12px} </style> <button class="btn-download">點選開啟小程式</button> </template> </wx-open-launch-weapp> <wx-open-launch-app id="launch-btn" appid="wx12" extinfo='{"PageType":1001}'> <script type="text/wxtag-template"> <style> .btn { padding: 12px } </style> <button class="btn">點選開啟APP</button> </script> </wx-open-launch-app> </div> </body> <script type="text/javascript" src="js/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="https://res2.wx.qq.com/open/js/jweixin-1.6.0.js "></script> <script> getAppList() function getAppList() { var link = location.href; let _params = { url: link }; $.ajax({ url: "https://demo.com/WeiXinService.svc/GetWxInfo", type: "POST", contentType: "application/json", data: JSON.stringify(_params), success: function (data) { const result = data; wx.config({ debug: false, // 開啟除錯模式,呼叫的所有api的返回值會在客戶端alert出來,若要檢視傳入的引數,可以在pc端開啟,引數資訊會通過log打出,僅在pc端時才會列印。 appId: result.appid, // 必填,公眾號的唯一標識 timestamp: result.timestamp, // 必填,生成簽名的時間戳 nonceStr: result.noncestr, // 必填,生成簽名的隨機串 signature: result.signature, // 必填,簽名 jsApiList: ['onMenuShareTimeline', 'chooseImage'], // 必填,需要使用的JS介面列表 openTagList: ['wx-open-launch-weapp', 'wx-open-launch-app'] // 可選,需要使用的開放標籤列表,例如['wx-open-launch-app'] }) wx.ready(function (res) { // config資訊驗證後會執行ready方法,所有介面呼叫都必須在config介面獲得結果之後,config是一個客戶端的非同步操作,所以如果需要在頁面載入時就呼叫相關介面,則須把相關介面放在ready函式中呼叫來確保正確執行。對於使用者觸發時才呼叫的介面,則可以直接呼叫,不需要放在ready函式中 var btn = document.getElementById('launch-btn'); btn.addEventListener('launch', function (e) { console.log('success', e); }); btn.addEventListener('error', function (e) { console.log('fail', e.detail); //開啟失敗則跳轉到下載頁 if (e.detail.errMsg == 'launch:fail') { if (navigator.userAgent.match(/(iPhone|iPod|iPad);?/i)) { window.location = "https://itunes.apple.com/"; //ios app下載地址 } else if (navigator.userAgent.match(/android/i)) { window.location = "https://demo.com/download.html"; //android app下載地址 } } }); }); wx.error(function (res) { // config資訊驗證失敗會執行error函式,如簽名過期導致驗證失敗,具體錯誤資訊可以開啟config的debug模式檢視,也可以在返回的res引數中檢視,對於SPA可以在這裡更新簽名 }); } }); } </script> </html>