WxJava icon indicating copy to clipboard operation
WxJava copied to clipboard

微信开发 Java SDK ,支持包括微信支付,开放平台,小程序,企业微信,视频号,公众号等的后端开发

Results 145 WxJava issues
Sort by recently updated
recently updated
newest added

![Image](https://github.com/user-attachments/assets/b5e69569-a767-4103-aaa1-ca7b63a70dcf)已经开启完全公钥模式了,但是还是有调用获取平台证书接口

### 获取沙箱环境签名key接口报错 "mch_id" is required. "sign" is required. "nonce_str" is required 明明是有值的 ` 3129345678 1749114345872 202524F6AF0E4AFA225F96CB34822492 ` ### 版本环境 ` com.github.binarywang weixin-java-pay 4.7.0 ` ### 大概原因 `httpPost.setEntity(createEntry(requestStr)); private static StringEntity...

### 简要描述 企业微信会话存档功能 未接收消息类型为视频通话的类型 文档链接为:https://developer.work.weixin.qq.com/document/path/91361#%E9%9F%B3%E8%A7%86%E9%A2%91%E9%80%9A%E8%AF%9D * WxJava 模块名: weixin-java-cp * WxJava 版本号:4.7.0 ### 详细描述

请问什么时候升级Httpclient,或者换成其他库,现在Httpclient4.x已经改成Httpclient5.x了

com.github.binarywang.wxpay.service.impl.WxPayServiceApacheHttpImpl这个类里面存在大量 try (CloseableHttpClient httpClient = this.createApiV3HttpClient();当出现异常时,httpClient的close方法会关闭连接池,导致下次请求报错,异常情况,不应该关闭连接池吧 例如,postV3WithWechatpaySerial方法 public String postV3WithWechatpaySerial(String url, String requestStr) throws WxPayException { HttpPost httpPost = this.createHttpPost(url, requestStr); this.configureRequest(httpPost); try (CloseableHttpClient httpClient = this.createApiV3HttpClient(); CloseableHttpResponse response =...