java呼叫微信分享
阿新 • • 發佈:2019-01-23
這篇文章主要是介紹如何使用java開發微信分享功能,因為工作,已經開發完成,可使用。下面有聯絡方式,可交流
如果想要自定義微信的分享功能,首先在自己的頁面內首先使用AJAX。下面我具體舉例。
首先是在頁面內寫入請求後臺的AJAX
/**
* 呼叫微信分享介面
* */
public void WXConfig(){
String url = getPara("href");
WXConfigController scan = new WXConfigController();
Map<String, String> map = scan.sign(url);
System.out.println("呼叫分享介面URL" +url);
renderJson(map);
}
1.這裡當中有個是獲得頁面傳來的當前地址href就是。
2.會呼叫一個方法類,這個可以個人習慣,也可以寫在當前這個方法裡,我只是寫在另外的地方,呼叫而已。
3.返回一個json資料renderJson(map);
接下來就是進入我們呼叫的類了。WXConfigController的sign(url)這個方法,這個類不涉及呼叫其它類的方法,只有這一個類裡面生成我們所需要的引數
package com.joffro.wine.controller.front;
import java.io.UnsupportedEncodingException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.Formatter;
import java.util.HashMap;
import java.util.Map;
import java.util.UUID;
import com.jfinal.kit.PropKit;
import com.joffro.web.common.controller.ControllerPath;
import com.joffro.weixin.WeixinUtil;
@ControllerPath (controllerKey = "/Joffro/wxconfig")
public class WXConfigController extends FrontController {
public static String accessToken = null;
public Map<String, String> sign(String url) {
String aToken = WeixinUtil.getAccess_token("https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid="+你的APPID+"&secret="+你的appSecret+"");
String[] tokenOne = aToken.split(":");
String[] token = tokenOne[1].split(",");
char [] stringArr = token[0].toCharArray();
String token3 = "" ;
for(int i=1;i<stringArr.length-1;i++){
String token2 = String.valueOf(stringArr[i]);
token3 += token2;
}
String jsapi_ticket =WeixinUtil.getAccess_token("https://api.weixin.qq.com/cgi-bin/ticket/getticket?access_token="+token3+"&type=jsapi");
String[] jsapi1 = jsapi_ticket.split(":");
String[] jsapi2 = jsapi1[3].split(",");
char [] stringArray = jsapi2[0].toCharArray();
String ticket3 = "" ;
for(int i=1;i<stringArray.length-1;i++){
String ticket = String.valueOf(stringArray[i]);
ticket3 += ticket;
}
Map<String, String> ret = new HashMap<String, String>();
String nonce_str = create_nonce_str(); //隨機串
String timestamp = create_timestamp(); //時間戳
String string1;
String signature = "";
//注意這裡引數名必須全部小寫,且必須有序
string1 = "jsapi_ticket=" + ticket3 +
"&noncestr=" + nonce_str +
"×tamp=" + timestamp +
"&url=" + url;
System.out.println("string1="+string1);
try
{
MessageDigest crypt = MessageDigest.getInstance("SHA-1");
crypt.reset();
crypt.update(string1.getBytes("UTF-8"));
signature = byteToHex(crypt.digest());
}
catch (NoSuchAlgorithmException e)
{
e.printStackTrace();
}
catch (UnsupportedEncodingException e)
{
e.printStackTrace();
}
ret.put("url", url);
ret.put("jsapi_ticket", ticket3);
ret.put("nonceStr", nonce_str);
ret.put("timestamp", timestamp);
ret.put("signature", signature);
ret.put("appId", PropKit.use("system.properties").get("appId"));
return ret;
}
/**
* 獲取使用者基本資訊
* @param hash
* @return
*/
public void getUserByopenid(){
String aToken = WeixinUtil.getAccess_token("https://api.weixin.qq.com/sns/userinfo?access_token=ACCESS_TOKEN&openid=OPENID&lang=zh_CN");
}
/**
* 隨機加密
* @param hash
* @return
*/
private static String byteToHex(final byte[] hash) {
Formatter formatter = new Formatter();
for (byte b : hash)
{
formatter.format("%02x", b);
}
String result = formatter.toString();
formatter.close();
return result;
}
/**
* 產生隨機串--由程式自己隨機產生
* @return
*/
private static String create_nonce_str() {
return UUID.randomUUID().toString();
}
/**
* 由程式自己獲取當前時間
* @return
*/
private static String create_timestamp() {
return Long.toString(System.currentTimeMillis() / 1000);
}
}
1.這裡如果成功了就會進入這個方法。
wx.ready(function(){
//分享朋友
wx.onMenuShareAppMessage({
title: '轉盤大抽獎', // 分享標題
desc: '轉盤大抽獎,好獎等你拿', // 分享描述
link: 'http://open.weixin.qq.com/connect/oauth2/authorize?appid='你的APPID'&redirect_uri=www.baidu.com', // 分享連結
imgUrl: 'http://www.****.com/*****/static/img/line.png', // 分享圖示
trigger: function (res) {
alert(res.);
},
success: function () {
// 使用者確認分享後執行的回撥函式
alert("分享成功");
// 使用者確認分享後執行的回撥函式,跳轉後臺
//獲取openid
var openid = $("#openid").val();
location.href = "/*****/shareOk?openid="+openid;
},
cancel: function () {
// 使用者取消分享後執行的回撥函式
alert("分享失敗");
}
});
//分享朋友圈
wx.onMenuShareTimeline({
title: '大抽獎', // 分享標題
link: 'www.baidu.com', // 分享連結
imgUrl: 'http://www.*****.com/******/static/img/line.png', // 分享圖示
success: function () {
alert("分享成功");
// 使用者確認分享後執行的回撥函式,跳轉後臺
//獲取openid
var openid = $("#openid").val();
location.href = "/*******/shareOk?openid="+openid;
},
cancel: function () {
// 使用者取消分享後執行的回撥函式
alert("分享失敗");
}
});
});
成功進入,就會進入上面的JS,然後點選手機微信右上角的幾個點,裡面的分享,點選後,分享的就是我們自定義的內容。兩個JS是在同一篇檔案中。
如果有問題,可以溝通:QQ:767604112