您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“java怎么接入微信JS-SDK”,內容詳細,步驟清晰,細節處理妥當,希望這篇“java怎么接入微信JS-SDK”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
先登錄微信公眾平臺進入“公眾號設置”的“功能設置”里填寫“JS接口安全域名”。
備注:登錄后可在“開發者中心”查看對應的接口權限。
在需要調用JS接口的頁面引入如下JS文件,(支持https):http://res.wx.qq.com/open/js/jweixin-1.4.0.js
如需進一步提升服務穩定性,當上述資源不可訪問時,可改訪問:http://res2.wx.qq.com/open/js/jweixin-1.4.0.js (支持https)。
備注:支持使用 AMD/CMD 標準模塊加載方法加載
wx.config({ debug: true, // 開啟調試模式,調用的所有api的返回值會在客戶端alert出來,若要查看傳入的參數,可以在pc端打開,參數信息會通過log打出,僅在pc端時才會打印。 appId: '', // 必填,公眾號的唯一標識 timestamp: , // 必填,生成簽名的時間戳 nonceStr: '', // 必填,生成簽名的隨機串 signature: '',// 必填,簽名 jsApiList: [] // 必填,需要使用的JS接口列表 });
1.承裝access_token的實體類,因為access_token的有效期是7200秒,
1 import java.util.*; 2 3 public class Singleton { 4 //緩存accessToken 的Map ,map中包含 一個accessToken 和 緩存的時間戳 5 //當然也可以分開成兩個屬性咯 6 private Map<String, String> map = new HashMap<>(); 7 8 private Singleton() { 9 } 10 11 private static Singleton single = null; 12 13 // 靜態工廠方法 14 public static Singleton getInstance() { 15 if (single == null) { 16 single = new Singleton(); 17 } 18 return single; 19 } 20 21 public Map<String, String> getMap() { 22 return map; 23 } 24 25 public void setMap(Map<String, String> map) { 26 this.map = map; 27 } 28 29 public static Singleton getSingle() { 30 return single; 31 } 32 33 public static void setSingle(Singleton single) { 34 Singleton.single = single; 35 } 36 }
獲取 jsapi_ticket以及生成簽名
public class WxUtils { public static String appId = "微信公眾號appid"; public static String appSecret = "微信公眾號appSecret "; //獲取access_token的url public final static String js_api_ticket_url = "https://api.weixin.qq.com/cgi-bin/ticket/getticket?access_token=ACCESS_TOKEN&type=jsapi"; /** * 獲取access_token * * @return */ private static String getAccessToken() { String rel = ""; Singleton singleton = Singleton.getInstance(); Map<String, String> map = singleton.getMap(); String time = map.get("access_token_time"); String accessToken = map.get("access_token"); Long nowDate = new Date().getTime(); //這里設置過期時間 3000*1000就好了 if (accessToken != null && time != null && nowDate - Long.parseLong(time) < 7200 * 1000) { rel = accessToken; } else { String url = String.format("https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=%s&secret=%s", appId, appSecret); String result = HttpUtils.defaultGetMethod(url); if (StringUtils.isBlank(result)) { return null; } JsonObject responseJsonObject = GsonUtils.parseToJsonObj(result); map.put("access_token_time", nowDate + ""); map.put("access_token", GsonUtils.getString(responseJsonObject, "access_token")); rel = GsonUtils.getString(responseJsonObject, "access_token"); } return rel; } private static String getJsapiTicket(String accessToken) { String rel = ""; Singleton singleton = Singleton.getInstance(); Map<String, String> map = singleton.getMap(); String js_api_ticketn_time = map.get("js_api_ticketn_time"); String ticket = map.get("ticket"); Long nowDate = new Date().getTime(); if (ticket != null && js_api_ticketn_time != null && nowDate - Long.parseLong(js_api_ticketn_time) < 7200 * 1000) { rel = ticket; } else { String url = js_api_ticket_url.replace("ACCESS_TOKEN", accessToken); String result = HttpUtils.defaultGetMethod(url); if (StringUtils.isBlank(result)) { return null; } JsonObject responseJsonObject = GsonUtils.parseToJsonObj(result); map.put("js_api_ticketn_time", nowDate + ""); map.put("ticket", GsonUtils.getString(responseJsonObject, "ticket")); rel = GsonUtils.getString(responseJsonObject, "ticket"); } return rel; } public static Map getConfig(String url) { String accessToken = getAccessToken(); String ticket = getJsapiTicket(accessToken); String nonceStr = create_nonce_str(); String timestamp = create_timestamp(); String string1 = "jsapi_ticket=" + ticket + "&noncestr=" + nonceStr + "×tamp=" + timestamp + "&url=" + url; Map<String, Object> map = new HashMap<>(); map.put("appId", appId); map.put("timestamp", timestamp); map.put("nonceStr", nonceStr); map.put("signature", SHA1.encode(string1)); return map; } private static String create_nonce_str() { return UUID.randomUUID().toString(); } private static String create_timestamp() { return Long.toString(System.currentTimeMillis() / 1000); } }
SHA1簽名
/* * 微信公眾平臺(JAVA) SDK * * Copyright (c) 2016, Ansitech Network Technology Co.,Ltd All rights reserved. * http://www.ansitech.com/weixin/sdk/ * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import java.security.MessageDigest; /** * <p>Title: SHA1算法</p> * * @author levi */ public final class SHA1 { private static final char[] HEX_DIGITS = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'}; /** * Takes the raw bytes from the digest and formats them correct. * * @param bytes the raw bytes from the digest. * @return the formatted bytes. */ private static String getFormattedText(byte[] bytes) { int len = bytes.length; StringBuilder buf = new StringBuilder(len * 2); // 把密文轉換成十六進制的字符串形式 for (int j = 0; j < len; j++) { buf.append(HEX_DIGITS[(bytes[j] >> 4) & 0x0f]); buf.append(HEX_DIGITS[bytes[j] & 0x0f]); } return buf.toString(); } public static String encode(String str) { if (str == null) { return null; } try { MessageDigest messageDigest = MessageDigest.getInstance("SHA1"); messageDigest.update(str.getBytes()); return getFormattedText(messageDigest.digest()); } catch (Exception e) { throw new RuntimeException(e); } } }
通過上面的方法,我們已經準備好了接入微信JS-SDK的所有材料,那么怎么在前端那邊使用,我們只需要請求到后臺獲取到config的相關數據就可以了。初次接入建議打開debug為調試模式,在debug調試模式打開的情況下接入成功會彈出成功提示。
1 $(function () { 2 wxConfig();//接入微信jssdk 3 }) 4 5 //請求后臺獲取wxconfig需要的信息 6 function wxConfig() { 7 $.ajax({ 8 url: '/pvmap-web/getData/wxConfig', 9 type: 'get', 10 data: {url: window.location.href}, 11 dataType: 'json', 12 success: function (data) { 13 // console.log(data) 14 if (data.data != null || data.data != "") { 15 wx.config({ 16 debug: true, // 開啟調試模式,調用的所有api的返回值會在客戶端alert出來,若要查看傳入的參數,可以在pc端打開,參數信息會通過log打出,僅在pc端時才會打印。 17 appId: data.data.appId, // 必填,公眾號的唯一標識 18 timestamp: data.data.timestamp, // 必填,生成簽名的時間戳 19 nonceStr: data.data.nonceStr, // 必填,生成簽名的隨機串 20 signature: data.data.signature,// 必填,簽名 21 jsApiList: ['openLocation'] // 必填,需要使用的JS接口列表 22 }); 23 } 24 }, 25 erroe: function (e) { 26 console.log(e) 27 } 28 }) 29 }
讀到這里,這篇“java怎么接入微信JS-SDK”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。