欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

微信小程序授权 获取用户的openid和session_key【后端使用java语言编写】,我写的是get方式,目的是测试能否获取到微信服务器中的数据,后期我会写上post请求方式。

程序员文章站 2023-09-09 18:42:32
在这里给大家分享下我的心得,1.写代码前一定要对整个流程有个了解。我就是因为在先不了解整个过程中去ctrl+c+v他人的博客代码,花费很多无用的时间去处理还不知道能不能跑的起来的代码。 2.本人比较喜欢手画图理解,本人亲测,印象很深刻。 在此声明因为是后端所以前端的代码就不写在上面了,有疑问留言,能 ......

在这里给大家分享下我的心得,1.写代码前一定要对整个流程有个了解。我就是因为在先不了解整个过程中去ctrl+c+v他人的博客代码,花费很多无用的时间去处理还不知道能不能跑的起来的代码。

              2.本人比较喜欢手画图理解,本人亲测,印象很深刻。

              

在此声明因为是后端所以前端的代码就不写在上面了,有疑问留言,能帮我会帮。

谢谢这个博主:(解密+post大家可以看这个博主的代码)

 

 

微信服务端api:https://developers.weixin.qq.com/miniprogram/dev/api-backend/auth.code2session.html

 

请求微信api接口:get https://api.weixin.qq.com/sns/jscode2session?appid=appid&secret=secret&js_code=jscode&grant_type=authorization_code

 

1.根据前端用户授权即会产生一个code用户登陆时获取的标识(这个code的声明周期是存活5分钟,5分钟过后就没用了)。

2.开发者服务器即我获取到前端传过来的code,另外还有3个固定的一个是appid(小程序的appid)、secret(小程序appsecret)、grant_type(授权类型,authorization_code)

3.根据2中的code+appid+secret+grant_type调用微信api接口返回的是json数据包:openid(用户唯一标识)、session_key(会话密钥)

 

a:首先我定义一个常量类,里面写有appid、secret、authorization_code这三个是固定不变的。

 

/**
*
* 用于微信授权:固定不变的常量
*
* */

public class weixin {

public static final string appid = "xxxxxx";

public static final string app_secrect = "xxxxxx";

public static final string authorization_code = "authorization_code";

}

添加一个工具类即获取资源路径的工具


b、httprequest.java 工具类 (整段复制即可无需修改)

 

package com.zzh.demo.base.utils;

import java.io.bufferedreader;
import java.io.ioexception;
import java.io.inputstreamreader;
import java.io.printwriter;
import java.net.url;
import java.net.urlconnection;
import java.util.list;
import java.util.map;

public class httprequest {

public static void main(string[] args) {
//发送 get 请求
string s=httprequest.sendget("http://v.qq.com/x/cover/kvehb7okfxqstmc.html?vid=e01957zem6o", "");
system.out.println(s);

// //发送 post 请求
// string sr=httprequest.sendpost("http://www.toutiao.com/stream/widget/local_weather/data/?city=%e4%b8%8a%e6%b5%b7", "");
// jsonobject json = jsonobject.fromobject(sr);
// system.out.println(json.get("data"));
}

/**
* 向指定url发送get方法的请求
*
* @param url
* 发送请求的url
* @param param
* 请求参数,请求参数应该是 name1=value1&name2=value2 的形式。
* @return url 所代表远程资源的响应结果
*/
public static string sendget(string url, string param) {
string result = "";
bufferedreader in = null;
try {
string urlnamestring = url + "?" + param;
url realurl = new url(urlnamestring);
// 打开和url之间的连接
urlconnection connection = realurl.openconnection();
// 设置通用的请求属性
connection.setrequestproperty("accept", "*/*");
connection.setrequestproperty("connection", "keep-alive");
connection.setrequestproperty("user-agent",
"mozilla/4.0 (compatible; msie 6.0; windows nt 5.1;sv1)");
// 建立实际的连接
connection.connect();
// 获取所有响应头字段
map<string, list<string>> map = connection.getheaderfields();
// 遍历所有的响应头字段
for (string key : map.keyset()) {
system.out.println(key + "--->" + map.get(key));
}
// 定义 bufferedreader输入流来读取url的响应
in = new bufferedreader(new inputstreamreader(
connection.getinputstream()));
string line;
while ((line = in.readline()) != null) {
result += line;
}
} catch (exception e) {
system.out.println("发送get请求出现异常!" + e);
e.printstacktrace();
}
// 使用finally块来关闭输入流
finally {
try {
if (in != null) {
in.close();
}
} catch (exception e2) {
e2.printstacktrace();
}
}
return result;
}

/**
* 向指定 url 发送post方法的请求
*
* @param url
* 发送请求的 url
* @param param
* 请求参数,请求参数应该是 name1=value1&name2=value2 的形式。
* @return 所代表远程资源的响应结果
*/
public static string sendpost(string url, string param) {
printwriter out = null;
bufferedreader in = null;
string result = "";
try {
url realurl = new url(url);
// 打开和url之间的连接
urlconnection conn = realurl.openconnection();
// 设置通用的请求属性
conn.setrequestproperty("accept", "*/*");
conn.setrequestproperty("connection", "keep-alive");
conn.setrequestproperty("user-agent",
"mozilla/4.0 (compatible; msie 6.0; windows nt 5.1;sv1)");
// 发送post请求必须设置如下两行
conn.setdooutput(true);
conn.setdoinput(true);
// 获取urlconnection对象对应的输出流
out = new printwriter(conn.getoutputstream());
// 发送请求参数
out.print(param);
// flush输出流的缓冲
out.flush();
// 定义bufferedreader输入流来读取url的响应
in = new bufferedreader(
new inputstreamreader(conn.getinputstream()));
string line;
while ((line = in.readline()) != null) {
result += line;
}
} catch (exception e) {
system.out.println("发送 post 请求出现异常!"+e);
e.printstacktrace();
}
//使用finally块来关闭输出流、输入流
finally{
try{
if(out!=null){
out.close();
}
if(in!=null){
in.close();
}
}
catch(ioexception ex){
ex.printstacktrace();
}
}
return result;
}
}

c:这个类里我把code写死了目的是为了便于测试是否能获取到微信服务器的用户唯一标识openid和会话密钥session_key
注意一下:要导入这个包字符串转json格式数据时
import org.json.jsonobject;
下面是代码:
import com.zzh.demo.base.common.weixin;
import com.zzh.demo.base.utils.httprequest;
import org.json.jsonobject;
import org.springframework.stereotype.controller;
import org.springframework.web.bind.annotation.requestmapping;
import org.springframework.web.bind.annotation.requestmethod;
import org.springframework.web.bind.annotation.responsebody;

import java.util.hashmap;
import java.util.map;

@controller
@requestmapping("/api/autozi")
public class testwxauthorization {
/**
    * @title: decodeuserinfo
    * @author:lizheng
    * @date:2018年3月25日
    * @description: 解密用户敏感数据

* @return
*/
@suppresswarnings({ "unchecked", "rawtypes" })
@requestmapping(value = "/decodeuserinfo", method = requestmethod.get)
@responsebody
public map decodeuserinfo() {

map map = new hashmap();

/////////////////////////////////////////////////////////////////////////自己定义的code

string code = "xxxxxxx";

// 登录凭证不能为空
if (code == null || code.length() == 0) {
map.put("status", 0);
map.put("msg", "code 不能为空");
return map;
}

// 小程序唯一标识 (在微信小程序管理后台获取)
string wxspappid = weixin.appid;
// 小程序的 app secret (在微信小程序管理后台获取)
string wxspsecret = weixin.app_secrect;
// 授权(必填)
string grant_type = weixin.authorization_code;

//////////////// 1、向微信服务器 使用登录凭证 code 获取 session_key 和 openid
// 请求参数
string params = "appid=" + wxspappid + "&secret=" + wxspsecret + "&js_code=" + code + "&grant_type="
+ grant_type;
// 发送请求
string sr = httprequest.sendget("https://api.weixin.qq.com/sns/jscode2session", params);


//////////////// 2、对encrypteddata加密数据进行aes解密 ////////////////
try {
// 解析相应内容(转换成json对象)
jsonobject json = new jsonobject(sr);
// 获取会话密钥(session_key)
string session_key = json.get("session_key").tostring();
// 用户的唯一标识(openid)
string openid = (string) json.get("openid").tostring();



map.put( "session_key",session_key);
map.put( "openid",openid );
} catch (exception e) {
e.printstacktrace();
}
return map;
}

}

下面是运行获取到的数据。有些的不对的地方请指正一定改。

微信小程序授权 获取用户的openid和session_key【后端使用java语言编写】,我写的是get方式,目的是测试能否获取到微信服务器中的数据,后期我会写上post请求方式。