此文章是Java後端接入微信登入功能,由於專案需要,捨棄瞭解密使用者資訊的session_key
,只保留openid
用於檢索使用者資訊
後端框架:spring boot
小程式框架:uniapp
官方小程式登入流程圖解(圖取自官網)
openid
可以獲取使用者的基本資訊(不同小程式中擁有不同openid)code
是使用者登入憑證,由微信伺服器頒發給小程式;後端通過code向微信伺服器請求使用者的openid
和session_key
等資訊。(code是一次性的,且時效為5分鐘)unionid
是相同的接入小程式登入(只保留 openid 登入功能)
工具類
import cn.hutool.core.util.StrUtil;
import cn.hutool.http.HttpRequest;
import cn.hutool.json.JSONObject;
import com.redapple.project.common.ErrorCode;
import com.redapple.project.exception.ThrowUtils;
public class RequestUtils {
// 獲取AccessToken
public static JSONObject getAccessToken(String appId, String appSecret) {
String apiUrl = StrUtil.format(
"https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={}&secret={}",
appId, appSecret
);
String body = HttpRequest.get(apiUrl).execute().body();
ThrowUtils.throwIf(body == null, ErrorCode.OPERATION_ERROR);
return new JSONObject(body);
}
// 獲取session_key和openid
public static String getOpenIdByCode(String appId, String secret, String code) {
String apiUrl = StrUtil.format(
"https://api.weixin.qq.com/sns/jscode2session?appid={}&secret={}&js_code={}&grant_type=authorization_code",
appId, secret, code
);
String body = HttpRequest.get(apiUrl).execute().body();
ThrowUtils.throwIf(body == null, ErrorCode.OPERATION_ERROR);
return body;
}
}
登入實現
主要接收三個引數,分別是小程式的appi、appSecret、前端傳來的code
這裡通過工具類向微信介面服務傳送jscode,返回openid
public LoginUserVO WeChatLogin(String appid, String secret, String code, HttpServletRequest request) {
// 獲取session_key和openid
String result = RequestUtils.getOpenIdByCode(appid, secret, code);
System.out.println("result:" + result);
// 提取openid
String openid = new JSONObject(result).getStr("openid");
// 這裡是自己封裝的方法,流程是如果openid為空則拋異常
ThrowUtils.throwIf(openid == null, ErrorCode.NOT_FOUND_ERROR, "openid為空");
// 查詢openid是否存在
QueryWrapper<User> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("openid", openid);
User oldUser = this.baseMapper.selectOne(queryWrapper);
// openid不存在
if (oldUser == null) {
// 新增使用者
User user = new User();
user.setOpenid(openid);
user.setPhone("手機號未填寫");
user.setUserName("預設使用者");
boolean saveResult = this.save(user);
if (!saveResult) {
// 這裡也是自己封裝的方法,流程是拋自定義異常
throw new BusinessException(ErrorCode.SYSTEM_ERROR, "註冊失敗,資料庫錯誤");
}
// 記錄使用者的登入態
request.getSession().setAttribute(USER_LOGIN_STATE, user);
return getLoginUserVO(user);
}
// 記錄使用者的登入態
request.getSession().setAttribute(USER_LOGIN_STATE, oldUser);
// 使用者存在,返回使用者資料
return getLoginUserVO(oldUser); // 自己封裝的方法,返回脫敏的使用者資料
}
uniapp框架
<template>
<view>
<button class="loginbutton" @click="login">微信一鍵登入</button>
</view>
</template>
<script setup lang="ts">
const login = () => {
uni.login({
provider: 'weixin', //使用微信登入
success: function (loginRes) {
if (loginRes.code !== null) {
console.log("獲取code:" + loginRes.code)
loginUser(loginRes.code);
} else {
console.log("code為空");
}
}
})
}
const loginUser = (code: any) => {
uni.request({
url: "http://localhost:8066/api/wechat/login",
method: 'POST',
data: {
code: code,
},
success: (res : any) => {
//每次登入時清楚快取
uni.removeStorageSync('JSESSIONID');
// 儲存Cookie到Storage
uni.setStorageSync("JSESSIONID", res.header['Set-Cookie'])
if (res.data.code === 1) {
uni.switchTab({
url: "/pages/index/index"
})
} else {
console.log(res);
}
}
})
}
</script>
<style>
</style>