Java+uniapp实现app端微信登陆

Java+uniapp实现app端微信登陆

1.准备工作

要想实现微信登陆,首先必须注册开发者账号。

  • 登录微信开放平台,添加移动应用并提交审核,审核通过后可获取应用ID(AppID),AppSecret等信息
  • 在应用详情中申请开通微信登录功能,根据页面提示填写资料,提交审核
  • 申请审核通过后即可打包使用微信授权登录功能
2.实现思路

1.app端请求调用微信登陆,用户登陆授权之后会返回一个code,通过这个code加上appidappSecret和可以得到access_tokenopenid等信息,通过access_tokenopenid 我们就可以去查询到用户基本登陆信息了。

在这里插入图片描述[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-3nfmJkUm-1677479663935)(data:image/gif;base64,R0lGODlhAQABAPABAP///wAAACH5BAEKAAAALAAAAAABAAEAAAICRAEAOw==)]编辑

3.具体实现
1.配置

在Hbulidx工具里打开uniapp项目,找到

manifest.json文件,在“App模块配置”项的“OAuth(登录鉴权)”下,勾选“微信登录”:

img

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-HNLKTZ6X-1677479663936)(data:image/gif;base64,R0lGODlhAQABAPABAP///wAAACH5BAEKAAAALAAAAAABAAEAAAICRAEAOw==)]编辑

  • appid
    微信开放平台申请应用的AppID值
  • appSecret(HBuilderX3.4.18+ 不再提供此参数的可视化配置,详见配置参数安全性问题
    微信开放平台申请应用的AppSecret值
  • UniversalLinks
    iOS平台通用链接,必须与微信开放平台配置的一致,推荐使用一键生成iOS通用链接
2.前端代码

<template>
	<view class="content">
		
		<view class="text-area">
			<button @click="wxlogin">微信登陆</button>
		</view>
	</view>
</template>

<script>
	export default {
		
		data() {
			return {
				title: 'Hello',
			}
			
		},
		onLoad() {

		},
		methods: {
			wxlogin() {
					  uni.login({ 
					  	"provider": "weixin",
					  	"onlyAuthorize": true, // 微信登录仅请求授权认证
					  	success: function(event){
							console.log(event.code);
					  		const {code} = event
					  		//客户端成功获取授权临时票据(code),向业务服务器发起登录请求。
					  		uni.request({
					  		    url: 'http://192.168.1.9:8085/wx/getToken', //仅为示例,并非真实接口地址。
					  		    data: {
					  		      code: event.code,
					  		    },
					  		    success: (res) => {
					  		        //获得token完成登录
					  				uni.setStorageSync('token',res.data.data.token);
									console.log(res.data.data.token);
									
									uni.request({
                                        	//存储登陆信息
											    url: 'http://192.168.1.9:8085/wx/login', //仅为示例,并非真实接口地址。
												method:'GET',
											    data: {
											       accessToken:res.data.data.token,
											       openid:res.data.data.openid,
											    },
											    
											});
					  		    }
					  		});
					  	},
					  	fail: function (err) {
					          // 登录授权失败  
					          // err.code是错误码
					      }
					  })
					  
					  
					  }
		}
	}
</script>
3.后端代码
package com.jdzh.enterprise.wxlogin;


/**
 * 描述: 凭证 </br>
 * 发布版本:V1.0 </br>
 */
public class WechatTokenEntity {
    /**
     * 接口访问凭证֤
     */
    private String accessToken;
    /**
     * 接口访问凭证֤,刷新
     */
    private String refreshToken;
    /**
     * 凭证有效期单位:second
     */
    private int expiresIn;
    /**
     * 授权用户唯一标识
     */
    private String openid;
    /**
     * 微信用户唯一标识
     */
    private String unionId;

    public String getOpenid() {
        return openid;
    }

    public void setOpenid(String openid) {
        this.openid = openid;
    }

    public String getAccessToken() {
        return accessToken;
    }

    public void setAccessToken(String accessToken) {
        this.accessToken = accessToken;
    }

    public int getExpiresIn() {
        return expiresIn;
    }

    public void setExpiresIn(int expiresIn) {
        this.expiresIn = expiresIn;
    }

    public String getUnionId() {
        return unionId;
    }

    public void setUnionId(String unionId) {
        this.unionId = unionId;
    }

    public String getRefreshToken() {
        return refreshToken;
    }

    public void setRefreshToken(String refreshToken) {
        this.refreshToken = refreshToken;
    }
}


package com.jdzh.enterprise.wxlogin;


import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;
import javax.net.ssl.X509TrustManager;

/**
 * 描述:信任管理器 </br>
 * 发布版本:V1.0 </br>
 */
/*
 * 证书管理器的作用是让它新人我们指定的证书,
 * 此类中的代码意味着信任所有的证书,不管是不是权威机构颁发的。
 */
public class WechatTrustManager implements X509TrustManager {
    // 检查客户端证书
    public void checkClientTrusted(X509Certificate[] chain, String authType) throws CertificateException {
    }

    // 检查服务器端证书
    public void checkServerTrusted(X509Certificate[] chain, String authType) throws CertificateException {
    }

    // 返回受信任的X509证书数组
    public X509Certificate[] getAcceptedIssuers() {
        return null;
    }
}

package com.jdzh.enterprise.wxlogin;


import java.io.Serializable;

/**
 * 用户管理InfoVO
 *
 * @author es
 * @email es@126.com
 */
public class WechatUserEntity implements Serializable {
    private static final long serialVersionUID = 1L;

    /**
     * 用户的标识
     */
    private String openId;
    /**
     * 关注状态(1是关注,0是未关注),未关注时获取不到其余信息
     */
    private int subscribe;
    /**
     * 用户关注时间,为时间戳。如果用户曾多次关注,则取最后关注时间
     */
    private String subscribeTime;
    /**
     * 昵称
     */
    private String nickname;
    /**
     * 用户的性别(1是男性,2是女性,0是未知)
     */
    private int sex;
    /**
     * 用户所在国家
     */
    private String country;
    /**
     * 用户所在省份
     */
    private String province;
    /**
     * 用户所在城市
     */
    private String city;
    /**
     * 用户的语言,简体中文为zh_CN
     */
    private String language;
    /**
     * 用户头像
     */
    private String headImgUrl;
    /**
     * 用户特权信息
     */
    private String PrivilegeList;
    /**
     * 微信授权用户唯一标识
     */
    private String unionId;

    public String getOpenId() {
        return openId;
    }

    public void setOpenId(String openId) {
        this.openId = openId;
    }

    public int getSubscribe() {
        return subscribe;
    }

    public void setSubscribe(int subscribe) {
        this.subscribe = subscribe;
    }

    public String getSubscribeTime() {
        return subscribeTime;
    }

    public void setSubscribeTime(String subscribeTime) {
        this.subscribeTime = subscribeTime;
    }

    public String getNickname() {
        return nickname;
    }

    public void setNickname(String nickname) {
        this.nickname = nickname;
    }

    public int getSex() {
        return sex;
    }

    public void setSex(int sex) {
        this.sex = sex;
    }

    public String getCountry() {
        return country;
    }

    public void setCountry(String country) {
        this.country = country;
    }

    public String getProvince() {
        return province;
    }

    public void setProvince(String province) {
        this.province = province;
    }

    public String getCity() {
        return city;
    }

    public void setCity(String city) {
        this.city = city;
    }

    public String getLanguage() {
        return language;
    }

    public void setLanguage(String language) {
        this.language = language;
    }

    public String getHeadImgUrl() {
        return headImgUrl;
    }

    public void setHeadImgUrl(String headImgUrl) {
        this.headImgUrl = headImgUrl;
    }

    public String getPrivilegeList() {
        return PrivilegeList;
    }

    public void setPrivilegeList(String privilegeList) {
        PrivilegeList = privilegeList;
    }

    public String getUnionId() {
        return unionId;
    }

    public void setUnionId(String unionId) {
        this.unionId = unionId;
    }
}


package com.jdzh.enterprise.wxlogin;



import net.sf.json.JSONException;
import net.sf.json.JSONObject;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.net.ssl.HttpsURLConnection;
import javax.net.ssl.SSLContext;
import javax.net.ssl.SSLSocketFactory;
import javax.net.ssl.TrustManager;
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 java.nio.charset.StandardCharsets;

public class WechatUtils {
    private final static Logger log = LoggerFactory.getLogger(WechatUtils.class);
    private final static String appid = "appid"; //凭证
    private final static String appsecret = "appsecret"; //凭证密钥

    // 凭证获取(GET)
    public final static String tokenUrl = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=APPID&secret=SECRET&code=CODE&grant_type=authorization_code";
    //userinfo
    public final static String userInfoUrl = "https://api.weixin.qq.com/sns/userinfo?access_token=ACCESS_TOKEN&openid=OPENID&lang=zh_CN";

    /**
     * 获取接口访问凭证
     *
     * @param code app授权后传回
     * @return
     */
    public static WechatTokenEntity getToken(String code) {
        WechatTokenEntity token = new WechatTokenEntity();
//        long now = new Date().getTime();
//        if (tokenTime != 0 && now - tokenTime < 7000000) {//token有效时间 7e6 毫秒
//            return token;
//        }
        String requestUrl = tokenUrl.replace("APPID", appid).replace("SECRET", appsecret).replace("CODE", code);
        // 发起GET请求获取凭证
        JSONObject jsonObject = httpsRequest(requestUrl, "GET", null);
        if (null != jsonObject) {
            try {
                token.setUnionId(jsonObject.getString("unionid"));
                token.setOpenid(jsonObject.getString("openid"));
                token.setAccessToken(jsonObject.getString("access_token"));
                token.setRefreshToken(jsonObject.getString("refresh_token"));
                token.setExpiresIn(jsonObject.getInt("expires_in"));
            } catch (JSONException e) {
                token = null;
                // 获取token失败
                log.error("获取token失败 errcode:{} errmsg:{}", jsonObject.getInt("errcode"), jsonObject.getString("errmsg"));
            }
        }
        return token;
    }

    public static void main(String args[]) {
        // 获取接口访问凭证
//        我这里是直接从前端传入accessToken,openid,所以可以直接拿到,下面是通过code生成
        String accessToken = getToken("code").getAccessToken();
        String openid = getToken("code").getOpenid();



//        /**
//         * 获取用户信息
//         */
        WechatUserEntity user = getUserInfo(accessToken, openid);
        //做这个测试的时候可以先关注,或者取消关注,控制台会打印出来此用户的openid
        System.out.println("OpenID:" + user.getOpenId());
        System.out.println("关注状态:" + user.getSubscribe());
        System.out.println("关注时间:" + user.getSubscribeTime());
        System.out.println("昵称:" + user.getNickname());
        System.out.println("性别:" + user.getSex());
        System.out.println("国家:" + user.getCountry());
        System.out.println("省份:" + user.getProvince());
        System.out.println("城市:" + user.getCity());
        System.out.println("语言:" + user.getLanguage());
        System.out.println("头像:" + user.getHeadImgUrl());
        getToken("02315v0w35TA603fsF0w3Q0fov415v0B");


    }

    /**
     * 获取用户信息
     *
     * @param accessToken 接口访问凭证
     * @param openId      用户标识
     * @return WeixinUserInfo
     */
    public static WechatUserEntity getUserInfo(String accessToken, String openId) {

        WechatUserEntity wechatUserEntity = null;
        // 拼接请求地址
        String requestUrl = userInfoUrl.replace("ACCESS_TOKEN", accessToken).replace("OPENID", openId);
        // 获取用户信息
        JSONObject jsonObject = httpsRequest(requestUrl, "GET", null);
        if (null != jsonObject) {
            try {
                wechatUserEntity = new WechatUserEntity();
                // 用户的标识
                wechatUserEntity.setOpenId(jsonObject.getString("openid"));
                wechatUserEntity.setUnionId(jsonObject.getString("unionid"));
                // 关注状态(1是关注,0是未关注),未关注时获取不到其余信息
//                wechatUserEntity.setSubscribe(jsonObject.getInt("subscribe"));
                // 用户关注时间
//                wechatUserEntity.setSubscribeTime(jsonObject.getString("subscribe_time"));
                // 昵称
                wechatUserEntity.setNickname(jsonObject.getString("nickname"));
                // 用户的性别(1是男性,2是女性,0是未知)
//                wechatUserEntity.setSex(jsonObject.getInt("sex"));
                // 用户所在国家
//                wechatUserEntity.setCountry(jsonObject.getString("country"));
                // 用户所在省份
//                wechatUserEntity.setProvince(jsonObject.getString("province"));
                // 用户所在城市
//                wechatUserEntity.setCity(jsonObject.getString("city"));
                // 用户的语言,简体中文为zh_CN
                wechatUserEntity.setLanguage(jsonObject.getString("language"));
                // 用户头像
                wechatUserEntity.setHeadImgUrl(jsonObject.getString("headimgurl"));
            } catch (Exception e) {
                int errorCode = jsonObject.getInt("errcode");
                String errorMsg = jsonObject.getString("errmsg");
//                System.err.printf("获取用户信息失败 errcode:{} errmsg:{}", errorCode, errorMsg);
            }
        }
        return wechatUserEntity;
    }

    /**
     * 发送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 WechatTrustManager()};
            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(StandardCharsets.UTF_8));
                outputStream.close();
            }

            // 从输入流读取返回内容
            InputStream inputStream = conn.getInputStream();
            InputStreamReader inputStreamReader = new InputStreamReader(inputStream, StandardCharsets.UTF_8);
            BufferedReader bufferedReader = new BufferedReader(inputStreamReader);
            String str = null;
            StringBuilder stringBuilder = new StringBuilder();
            while ((str = bufferedReader.readLine()) != null) {
                stringBuilder.append(str);
            }

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

Controller

package com.jdzh.enterprise.wxlogin;

import com.jdzh.enterprise.framework.entity.RespBean;
import com.jdzh.enterprise.framework.entity.User;
import com.jdzh.enterprise.framework.entity.vo.LoginVo;
import com.jdzh.enterprise.framework.service.IUserService;
import net.sf.json.JSONObject;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import javax.net.ssl.HttpsURLConnection;
import javax.net.ssl.SSLContext;
import javax.net.ssl.SSLSocketFactory;
import javax.net.ssl.TrustManager;
import java.io.*;
import java.net.ConnectException;
import java.net.HttpURLConnection;
import java.net.URL;
import java.nio.charset.StandardCharsets;

/**
 * @author Heb
 * @version 1.0
 * @description: TODO
 * @date 2023/2/13 10:02
 */
@RestController
@RequestMapping("/wx")
public class WxLoginController {
    @Autowired
    IUserService iUserService;
    private final static Logger log = LoggerFactory.getLogger(WechatUtils.class);
    private final static String appid = "appid    "; //凭证
    private final static String appsecret = "appsecret "; //凭证密钥

    // 凭证获取(GET)
    public final static String tokenUrl = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=APPID&secret=SECRET&code=CODE&grant_type=authorization_code";
    //userinfo
    public final static String userInfoUrl = "https://api.weixin.qq.com/sns/userinfo?access_token=ACCESS_TOKEN&openid=OPENID&lang=zh_CN";


    @GetMapping("/getToken")
    public RespBean getToken(String code) throws IOException {
        String s="appid="+ appid+
                    "&secret="+appsecret +
                    "&code="+code+
                    "&grant_type=authorization_code";
        // 发送HTTP POST请求
        String url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=wx31539bfd725f22c8&secret=c7cf5dede5fd948f5d62afe3aaf26b05&grant_type=authorization_code&code="+code;

        URL obj = new URL(url);
        HttpURLConnection con = (HttpURLConnection) obj.openConnection();

        //默认值我GET
        con.setRequestMethod("GET");

        //添加请求头
//        con.setRequestProperty("User-Agent", USER_AGENT);

        int responseCode = con.getResponseCode();
        System.out.println("\nSending 'GET' request to URL : " + url);
        System.out.println("Response Code : " + responseCode);

        BufferedReader in = new BufferedReader(
                new InputStreamReader(con.getInputStream()));
        String inputLine;
        StringBuffer response = new StringBuffer();

        while ((inputLine = in.readLine()) != null) {
            response.append(inputLine);
        }
        in.close();
        String result = response.toString();
        System.out.println("result = " + result);
        String token=result.substring(result.indexOf("{\"access_token\":\"")+17,result.indexOf("\",\""));
        String openid = result.substring(result.indexOf("\"openid\":\"")+10,result.indexOf("\",\"scope\""));
        LoginVo loginVo = new LoginVo();
        loginVo.setToken(token);
        loginVo.setOpenid(openid);
        System.out.println("openid = " + openid);
        return RespBean.ok("请求成功", loginVo);
    }



    @GetMapping("/login")
    public RespBean login(String accessToken, String openid) {
//        System.out.println("code = " + code);
//        // 获取接口访问凭证
//        String accessToken = getToken(code).getAccessToken();
//        String openid = getToken(code).getOpenid();
        System.out.println("accessToken = " + accessToken);
        System.out.println("openid = " + openid);
        /**
         * 获取用户信息
         */
        WechatUserEntity wechatUserEntity =getUserInfo(accessToken, openid);
        if(wechatUserEntity==null){
            return RespBean.error("获取用户信息失败,请检查accessToken或openid是否有效");
        }
//        System.out.println("关注时间:" + wechatUserEntity.getSubscribeTime());
        System.out.println("昵称:" + wechatUserEntity.getNickname());
//        System.out.println("性别:" + wechatUserEntity.getSex());
//        System.out.println("国家:" + wechatUserEntity.getCountry());
//        System.out.println("省份:" + wechatUserEntity.getProvince());
//        System.out.println("城市:" + wechatUserEntity.getCity());
//        System.out.println("语言:" + wechatUserEntity.getLanguage());
        System.out.println("头像:" + wechatUserEntity.getHeadImgUrl());
        String nickname = wechatUserEntity.getNickname();
        if(wechatUserEntity!=null){
           //将用户信息存在数据库中
            User user = new User();
              user.setOpenid(openid);
              user.setNickname(nickname);
              user.setIsVip(0);
              user.setRoleType(-1);
              //查询openId是否存在
            User user1 = iUserService.findByOpenId(openid);
           if(user1==null){
               //如果不存在,则添加到数据库
               iUserService.save(user);
           }

           return RespBean.ok("登陆成功",wechatUserEntity);
       }else{
           return RespBean.error("登陆失败",wechatUserEntity);
       }

    }

    /**
     * 获取用户信息
     *
     * @param accessToken 接口访问凭证
     * @param openid      用户标识
     * @return WeixinUserInfo
     */
    public static WechatUserEntity getUserInfo(String accessToken, String openid) {

        WechatUserEntity wechatUserEntity = null;
        // 拼接请求地址
        String requestUrl = userInfoUrl.replace("ACCESS_TOKEN", accessToken).replace("OPENID", openid);
        // 获取用户信息
        JSONObject jsonObject = httpsRequest(requestUrl, "GET", null);
        if (null != jsonObject) {
            try {
                wechatUserEntity = new WechatUserEntity();
                // 用户的标识
                wechatUserEntity.setOpenId(jsonObject.getString("openid"));
                wechatUserEntity.setUnionId(jsonObject.getString("unionid"));
                // 关注状态(1是关注,0是未关注),未关注时获取不到其余信息
//                wechatUserEntity.setSubscribe(jsonObject.getInt("subscribe"));
                // 用户关注时间
//                wechatUserEntity.setSubscribeTime(jsonObject.getString("subscribe_time"));
                // 昵称
                wechatUserEntity.setNickname(jsonObject.getString("nickname"));
//                 用户的性别(1是男性,2是女性,0是未知)
//                wechatUserEntity.setSex(jsonObject.getInt("sex"));
//                 用户所在国家
//                wechatUserEntity.setCountry(jsonObject.getString("country"));
//                 用户所在省份
//                wechatUserEntity.setProvince(jsonObject.getString("province"));
//                 用户所在城市
//                wechatUserEntity.setCity(jsonObject.getString("city"));
                // 用户的语言,简体中文为zh_CN
//                wechatUserEntity.setLanguage(jsonObject.getString("language"));
                // 用户头像
                wechatUserEntity.setHeadImgUrl(jsonObject.getString("headimgurl"));
            } catch (Exception e) {
                int errorCode = jsonObject.getInt("errcode");
                String errorMsg = jsonObject.getString("errmsg");
                System.err.printf("获取用户信息失败 errcode:{} errmsg:{}", errorCode, errorMsg);
                return null;
            }
        }
        return wechatUserEntity;
    }

    /**
     * 发送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 WechatTrustManager()};
            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(StandardCharsets.UTF_8));
                outputStream.close();
            }

            // 从输入流读取返回内容
            InputStream inputStream = conn.getInputStream();
            InputStreamReader inputStreamReader = new InputStreamReader(inputStream, StandardCharsets.UTF_8);
            BufferedReader bufferedReader = new BufferedReader(inputStreamReader);
            String str = null;
            StringBuilder stringBuilder = new StringBuilder();
            while ((str = bufferedReader.readLine()) != null) {
                stringBuilder.append(str);
            }

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

RespBean

package com.jdzh.enterprise.framework.entity;

/**
 * author:heb
 * 2022/12/12 10:35
 */
public class RespBean {
    private Integer status;
    private String msg;
    private Object data;

    public static RespBean ok(String msg,Object data){
        return new RespBean(200,msg,data);
    }
    public static RespBean ok(String msg){
        return new RespBean(200,msg,null);
    }

    public static RespBean error(String msg,Object data){
        return new RespBean(500,msg,data);
    }
    public static RespBean error(String msg){
        return new RespBean(500,msg,null);
    }

    public RespBean() {
    }

    public RespBean(Integer status, String msg, Object data) {
        this.status = status;
        this.msg = msg;
        this.data = data;
    }

    public Integer getStatus() {
        return status;
    }

    public void setStatus(Integer status) {
        this.status = status;
    }

    public String getMsg() {
        return msg;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }

    public Object getData() {
        return data;
    }

    public void setData(Object data) {
        this.data = data;
    }
}

这样就可以实现微信app端登陆啦!
  • 5
    点赞
  • 21
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值