新增 微信第三方平台 使用授权码获取授权信息接口

This commit is contained in:
Lemon
2023-07-29 11:42:01 +08:00
parent d4723d9274
commit 13b7a1f9a6
6 changed files with 148 additions and 3 deletions

View File

@@ -6,6 +6,7 @@ import com.jsowell.common.core.controller.BaseController;
import com.jsowell.common.response.RestApiResponse;
import com.jsowell.pile.domain.AuthorizationEventResult;
import com.jsowell.pile.dto.GetComponentTokenDTO;
import com.jsowell.pile.vo.agentDev.AuthInfo;
import com.jsowell.service.AgentDevService;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
@@ -28,7 +29,7 @@ public class AgentDevController extends BaseController {
private AgentDevService agentDevService;
/**
* 授权事件接收URL,验证票据、
* 授权事件接收URL,验证票据、授权事件
*
* @param timestamp
* @param nonce
@@ -82,4 +83,24 @@ public class AgentDevController extends BaseController {
return response;
}
/**
* 使用授权码获取授权信息
* @param authorizationCode
* @return
*/
@GetMapping("/getAuthInfo/{authorizationCode}")
public RestApiResponse<?> getAuthInfo(@PathVariable("authorizationCode") String authorizationCode) {
logger.info("使用授权码获取授权信息 params:{}", authorizationCode);
RestApiResponse<?> response = null;
try {
AuthInfo authInfo = agentDevService.getAuthInfoByAuthCode(authorizationCode);
response = new RestApiResponse<>(authInfo);
} catch (Exception e) {
logger.error("使用授权码获取授权信息 error,", e);
response = new RestApiResponse<>(e);
}
logger.info("使用授权码获取授权信息 result:{}", response);
return response;
}
}

View File

@@ -9,6 +9,7 @@ import com.jsowell.common.util.wxplatform.AesException;
import com.jsowell.common.util.wxplatform.WXBizMsgCrypt;
import com.jsowell.common.util.wxplatform.WXXmlToMapUtil;
import com.jsowell.pile.dto.GetComponentTokenDTO;
import com.jsowell.pile.vo.agentDev.AuthInfo;
import org.apache.commons.collections.MapUtils;
import org.apache.commons.lang3.RandomStringUtils;
import org.slf4j.Logger;
@@ -124,6 +125,7 @@ public class AgentDevService {
/**
* 小程序/公众号授权事件
*
* @param map
*/
private void authorizedInform(Map<String, String> map) {
@@ -209,4 +211,44 @@ public class AgentDevService {
return token;
}
/**
* 使用授权码获取授权信息
* 并将授权信息中的 接口调用令牌、刷新令牌存入缓存
*
* @param authorizationCode
*/
public AuthInfo getAuthInfoByAuthCode(String authorizationCode) {
// 获取 component_access_token
GetComponentTokenDTO dto = GetComponentTokenDTO.builder()
.appId(PLATFORM_APP_ID)
.appSecret(PLATFORM_APP_SECRET)
.verifyTicket(null)
.build();
String componentToken = getComponentToken(dto);
// 使用授权码获取授权信息 url
String url = "https://api.weixin.qq.com/cgi-bin/component/api_query_auth?component_access_token=" + componentToken;
JSONObject jsonObject = new JSONObject();
jsonObject.put("component_appid", PLATFORM_APP_ID);
jsonObject.put("authorization_code", authorizationCode);
String result = HttpUtils.sendPost(url, JSONObject.toJSONString(jsonObject));
logger.info("获取第三方平台 使用授权码获取授权信息 请求参数:{}, 请求结果:{}", JSONObject.toJSONString(jsonObject), result);
AuthInfo authInfo = JSONObject.parseObject(result, AuthInfo.class);
if (authInfo == null) {
throw new RuntimeException("获取第三方平台 使用授权码获取授权信息 error");
}
String authorizerAccessToken = authInfo.getAuthorizerAccessToken(); // 接口调用令牌, 默认有效期 7200 秒
String authorizerRefreshToken = authInfo.getAuthorizerRefreshToken(); // 刷新令牌 永久保存
String authorizerAppid = authInfo.getAuthorizerAppid(); // 授权方 appid
String authAccessTokenKey = CacheConstants.AUTHORIZER_ACCESS_TOKEN + authorizerAppid;
redisCache.setCacheObject(authAccessTokenKey, authorizerAccessToken, authInfo.getExpiredTime(), TimeUnit.SECONDS);
String authRefreshTokenKey = CacheConstants.AUTHORIZER_REFRESH_TOKEN + authorizerAppid;
redisCache.setCacheObject(authRefreshTokenKey, authorizerRefreshToken);
return authInfo;
}
}