技术随笔微信微信授权登录(微信订阅号使用测试账号)
程序员七平微信作为现在最火的社交App,使用微信扫描二维码登录也更加方便和快捷,也不至于注册一大堆账号,想起来都烦。使用花生壳+微信测试账号+微信公众号+java做一个demo熟悉下微信开发。
demo地址:wxlogin-demo
Updated By Mr.wang 2019-1-4: 这个文章是在2017-09-17 在博客园写的,边写代码边写博客,记录的不够详细,还请包涵。微信把接口好像调整了,订阅号现在没有这个测试登录的权限了,但是整体实现应该是没有区别的。
准备
- 花生壳:用来作为内网穿透,以便微信登录接口(需要公网中能够访问到的地址)回调,花生壳下载链接
- 微信公众号:设置【授权回调页面域名】;
- 微信公众号开发测试账号:点击访问申请地址
注意事项
在微信公众号请求用户网页授权之前,开发者需要先到公众平台官网中的“开发 - 接口权限 - 网页服务 - 网页帐号 - 网页授权获取用户基本信息”的配置选项中,修改授权回调域名。请注意,这里填写的是域名(是一个字符串),而不是URL,因此请勿加 http:// 等协议头;


开发demo所需要的jar包

直接上代码
AuthUtil.java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
| package com.wanglixia;
import net.sf.json.JSONObject; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; import org.apache.http.client.methods.HttpGet; import org.apache.http.impl.client.DefaultHttpClient; import org.apache.http.util.EntityUtils;
import java.io.IOException;
public class AuthUtil {
public static final String APPID = "这块填appid"; public static final String APPSECRET = "这块是appsecret";
public static JSONObject doGetJson(String url) throws IOException { JSONObject jsonObject = null; DefaultHttpClient client = new DefaultHttpClient(); HttpGet httpGet = new HttpGet(url); HttpResponse httpResponse = client.execute(httpGet); HttpEntity entity = httpResponse.getEntity(); if (entity != null) { String result = EntityUtils.toString(entity, "UTF-8"); jsonObject = JSONObject.fromObject(result); } httpGet.releaseConnection(); return jsonObject; } }
|
CallBackServlet.java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
| package com.wanglixia;
import net.sf.json.JSONObject;
import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException;
@WebServlet("/callBack") public class CallBackServlet extends HttpServlet { protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { String code = req.getParameter("code"); String url = "https://api.weixin.qq.com/sns/oauth2/access_token?" + "appid=" + AuthUtil.APPID + "&secret=" + AuthUtil.APPSECRET + "&code=" + code + "&grant_type=authorization_code"; JSONObject jsonObject = AuthUtil.doGetJson(url); System.out.println(jsonObject.toString()); String openid = jsonObject.getString("openid"); String token = jsonObject.getString("access_token");
String infoUrl = "https://api.weixin.qq.com/sns/userinfo?" + "access_token=" + token + "&openid=" + openid + "&lang=zh_CN"; JSONObject userInfo = AuthUtil.doGetJson(infoUrl); System.out.println(userInfo);
} }
|
WxLogin.java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| package com.wanglixia;
import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; import java.net.URLEncoder;
@WebServlet("/wxLogin") public class WxLogin extends HttpServlet { protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { String backUrl = "http://这儿是你的回调地址,上图填的那个/callBack"; String url = "https://open.weixin.qq.com/connect/oauth2/authorize?" + "appid=" + AuthUtil.APPID + "&redirect_uri=" + URLEncoder.encode(backUrl) + "&response_type=code" + "&scope=snsapi_userinfo" + "&state=STATE#wechat_redirect"; resp.sendRedirect(url); } }
|
index.jsp
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| <%-- Created by IntelliJ IDEA. User: Mr.wang Date: 2017/9/17 Time: 11:02 To change this template use File | Settings | File Templates. --%> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <title>$Title$</title> </head> <body style="font-size: 40px;text-align: center;"> <a href="/wxLogin">微信公众授权登录</a> </body> </html>
|
index1.jsp
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| <%-- Created by IntelliJ IDEA. User: Mr.wang Date: 2017/9/17 Time: 11:02 To change this template use File | Settings | File Templates. --%> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <title>$Title$</title> </head> <body> <div>登录成功!</div> <div>${info}</div> <div><img style="width: 100px;height: 100px;" src="${info.headimgurl}"></div> </body> </html>
|
中间遇到的问题:
- 接口回调地址设置错误,这个地址需要是公网中能够访问到的地址,因此需要用花生壳来进行内网映射;
- 因为没有微信公众服务号,因此,找了半天,突然想起有个测试账号。
参考
慕课网教程:http://www.imooc.com/learn/713