🆕 【公众号】优化配置类,增加新方法获取 OAuth 2.0重定向 URL 和 QR 连接重定向 URL !146

This commit is contained in:
pengles 2024-12-09 09:01:12 +00:00 committed by Binary Wang
parent 03f78caecf
commit ca005534d4
6 changed files with 48 additions and 4 deletions

View File

@ -22,13 +22,15 @@ public interface WxMpConfigStorage {
/**
* Is use stable access token api
* @Link https://developers.weixin.qq.com/doc/offiaccount/Basic_Information/getStableAccessToken.html
*
* @return the boolean
* @link https://developers.weixin.qq.com/doc/offiaccount/Basic_Information/getStableAccessToken.html
*/
boolean isStableAccessToken();
/**
* Set use stable access token api
*
* @param useStableAccessToken true is use, false is not
*/
void useStableAccessToken(boolean useStableAccessToken);
@ -154,9 +156,28 @@ public interface WxMpConfigStorage {
* Gets oauth 2 redirect uri.
*
* @return the oauth 2 redirect uri
* @deprecated This method is deprecated due to incorrect naming convention.
* Use {@link #getOauth2RedirectUrl()} instead.
*/
@Deprecated
String getOauth2redirectUri();
/**
* Gets OAuth 2.0 redirect Url
*
* @return the OAuth 2.0 redirect Url
* @author <a href="https://gitee.com/pengles">Peng Les</a>
*/
String getOauth2RedirectUrl();
/**
* Gets QR connect redirect Url
*
* @return the QR connect redirect Url
* @author <a href="https://gitee.com/pengles">Peng Les</a>
*/
String getQrConnectRedirectUrl();
/**
* Gets http proxy host.
*

View File

@ -34,7 +34,10 @@ public class WxMpDefaultConfigImpl implements WxMpConfigStorage, Serializable {
protected volatile String aesKey;
protected volatile long expiresTime;
@Deprecated
protected volatile String oauth2redirectUri;
protected volatile String oauth2RedirectUrl;
protected volatile String qrConnectRedirectUrl;
protected volatile String httpProxyHost;
protected volatile int httpProxyPort;

View File

@ -44,6 +44,15 @@ public class WxMpServiceImplTest {
System.out.println(qrConnectUrl);
}
@Test
public void testBuildQrConnectRedirectUrl() {
String qrConnectRedirectUrl = this.wxService.getWxMpConfigStorage().getQrConnectRedirectUrl();
String qrConnectUrl = this.wxService.buildQrConnectUrl(qrConnectRedirectUrl,
WxConsts.QrConnectScope.SNSAPI_LOGIN, null);
Assert.assertNotNull(qrConnectUrl);
System.out.println(qrConnectUrl);
}
public void testGetTicket() throws WxErrorException {
String ticket = this.wxService.getTicket(TicketType.SDK, false);
System.out.println(ticket);

View File

@ -18,7 +18,7 @@ public class DemoOAuth2Handler implements WxMpMessageHandler {
Map<String, Object> context, WxMpService wxMpService,
WxSessionManager sessionManager) {
String href = "<a href=\"" + wxMpService.getOAuth2Service().buildAuthorizationUrl(
wxMpService.getWxMpConfigStorage().getOauth2redirectUri(),
wxMpService.getWxMpConfigStorage().getOauth2RedirectUrl(),
WxConsts.OAuth2Scope.SNSAPI_USERINFO, null) + "\">测试oauth2</a>";
return WxMpXmlOutMessage.TEXT().content(href)
.fromUser(wxMessage.getToUser()).toUser(wxMessage.getFromUser())

View File

@ -10,7 +10,7 @@
<partnerKey>商户平台设置的API密钥</partnerKey>
<keyPath>商户平台的证书文件地址</keyPath>
<templateId>模版消息的模版ID</templateId>
<oauth2redirectUri>网页授权获取用户信息回调地址</oauth2redirectUri>
<qrconnectRedirectUrl>网页应用授权登陆回调地址</qrconnectRedirectUrl>
<oauth2RedirectUrl>网页授权获取用户信息回调地址</oauth2RedirectUrl>
<qrConnectRedirectUrl>网页应用授权登陆回调地址</qrConnectRedirectUrl>
<kfAccount>完整客服账号,格式为:账号前缀@公众号微信号</kfAccount>
</xml>

View File

@ -572,11 +572,22 @@ public class WxOpenInMemoryConfigStorage implements WxOpenConfigStorage {
return null;
}
@Deprecated
@Override
public String getOauth2redirectUri() {
return null;
}
@Override
public String getOauth2RedirectUrl() {
return null;
}
@Override
public String getQrConnectRedirectUrl() {
return null;
}
@Override
public String getHttpProxyHost() {
return this.wxOpenConfigStorage.getHttpProxyHost();