🐛 #3249 【开放平台】修复haveOpen接口的请求地址

This commit is contained in:
zhongjun 2024-03-29 19:34:47 +08:00 committed by GitHub
parent 94aaff4c94
commit ddddffc2e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -609,7 +609,7 @@ public class WxOpenComponentServiceImpl implements WxOpenComponentService {
@Override
public WxOpenHaveResult haveOpen() throws WxErrorException {
String json = post(GET_OPEN_URL, null);
String json = get(HAVE_OPEN_URL, "access_token");
return WxOpenHaveResult.fromJson(json);
}