微信自定义菜单 ViewButton绑定openid(Java)

每个微信账号在关注公共主页时都会生成一个特有的openid作为唯一标示符,在实现微信账号与第三方账号绑定的功能时,普遍采用openid作为绑定的方法。


在通常过程中,用户与服务器交互的过程中才能获得这个openid,比如公共账号回复一条图文消息(xml格式),可解析xml中的openid。


但是viewButton在申请的时候必须绑定一个固定的url,没有办法在url中传一个openid到web应用中,怎么在java项目中解决呢?网络上大部分的解决方案都是php、asp的~


主要参考资料;

http://jingyan.baidu.com/article/48206aeae7aa24216ad6b3f3.html

http://www.cnblogs.com/lyl6796910/p/3661161.html

http://www.cnblogs.com/lyl6796910/p/3661165.html

http://www.cnblogs.com/txw1958/p/weixin71-oauth20.html


(1)先在微信公共平台把OAuth2.0 的网页授权改成你要跳转的网址:如

1.mistest.sinaapp.com


(2)创建viewButon时把url换成:

		ViewButton btn11 = new ViewButton();
		btn11.setName("账户绑定");
		btn11.setType("view");
		btn11.setUrl("https://open.weixin.qq.com/connect/oauth2/authorize?appid=*************&redirect_uri=http://1.mistest.sinaapp.com/index.jsp&response_type=code&scope=snsapi_base&state=1#wechat_redirect");


(3)这样点击这个按钮时就会跳转到指定的网址,同时附上 code的值


(4)写个类通过code得到openid

package org.course.util;

import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.net.ConnectException;
import java.net.URL;
import javax.net.ssl.HttpsURLConnection;
import javax.net.ssl.SSLContext;
import javax.net.ssl.SSLSocketFactory;
import javax.net.ssl.TrustManager;
import net.sf.json.JSONException;
import net.sf.json.JSONObject;
import org.liufeng.course.pojo.Token;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * 通用工具类
 * 
 * @date 2013-10-17
 */
public class CommonUtil {
	private static Logger log = LoggerFactory.getLogger(CommonUtil.class);

	// 凭证获取(GET)
	public final static String token_url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET";

	/**
	 * 发送https请求
	 * 
	 * @param requestUrl 请求地址
	 * @param requestMethod 请求方式(GET、POST)
	 * @param outputStr 提交的数据
	 * @return JSONObject(通过JSONObject.get(key)的方式获取json对象的属性值)
	 */
	public static JSONObject httpsRequest(String requestUrl, String requestMethod, String outputStr) {
		JSONObject jsonObject = null;
		try {
			// 创建SSLContext对象,并使用我们指定的信任管理器初始化
			TrustManager[] tm = { new MyX509TrustManager() };
			SSLContext sslContext = SSLContext.getInstance("SSL", "SunJSSE");
			sslContext.init(null, tm, new java.security.SecureRandom());
			// 从上述SSLContext对象中得到SSLSocketFactory对象
			SSLSocketFactory ssf = sslContext.getSocketFactory();

			URL url = new URL(requestUrl);
			HttpsURLConnection conn = (HttpsURLConnection) url.openConnection();
			conn.setSSLSocketFactory(ssf);
			
			conn.setDoOutput(true);
			conn.setDoInput(true);
			conn.setUseCaches(false);
			// 设置请求方式(GET/POST)
			conn.setRequestMethod(requestMethod);

			// 当outputStr不为null时向输出流写数据
			if (null != outputStr) {
				OutputStream outputStream = conn.getOutputStream();
				// 注意编码格式
				outputStream.write(outputStr.getBytes("UTF-8"));
				outputStream.close();
			}

			// 从输入流读取返回内容
			InputStream inputStream = conn.getInputStream();
			InputStreamReader inputStreamReader = new InputStreamReader(inputStream, "utf-8");
			BufferedReader bufferedReader = new BufferedReader(inputStreamReader);
			String str = null;
			StringBuffer buffer = new StringBuffer();
			while ((str = bufferedReader.readLine()) != null) {
				buffer.append(str);
			}

			// 释放资源
			bufferedReader.close();
			inputStreamReader.close();
			inputStream.close();
			inputStream = null;
			conn.disconnect();
			jsonObject = JSONObject.fromObject(buffer.toString());
		} catch (ConnectException ce) {
			log.error("连接超时:{}", ce);
		} catch (Exception e) {
			log.error("https请求异常:{}", e);
		}
		return jsonObject;
	}

	/**
	 * 获取openid
	 * 
	 * @param code 凭证
	 * @return
	 */
	
	public static String getOpenid(String code) {
		String openid = null;
		// 第三方用户唯一凭证
		String appid = "**************";
		// 第三方用户唯一凭证密钥
		String appsecret = "*************";
		String openid_url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=APPID&secret=APPSECRET&code=CODE&grant_type=authorization_code";
		String requestUrl = openid_url.replace("APPID", appid).replace("APPSECRET", appsecret).replace("CODE", code);
		// 发起GET请求获取凭证
		JSONObject jsonObject = httpsRequest(requestUrl, "GET", null);

		if (null != jsonObject) {
			try {
				openid=jsonObject.getString("openid");
			} catch (JSONException e) {
				openid = null;
				// 获取openid失败
				log.error("获取openid失败 errcode:{} errmsg:{}", jsonObject.getInt("errcode"), jsonObject.getString("errmsg"));
			}
		}
		return openid;
	}
	
	
	
}

(5)在刚刚跳转到的网页(JSP)里调用上面的方法,获得openid

<%String code = request.getParameter("code"); 
  String openid= CommonUtil.getOpenid(code);%>

这样就成功的完成了点击ViewButton直接跳转到网页同时带着一个openid参数过去了~




评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值