WxJava
WxJava copied to clipboard
微信开发 Java SDK ,支持包括微信支付,开放平台,小程序,企业微信,视频号,公众号等的后端开发
This PR implements the missing "运营工具-商家转账API" (Business Operations - Merchant Transfer API) referenced in WeChat Pay document 4012711988. The issue reported that this API was not available in WxJava despite...
This PR implements the WeChat Pay V3 subscription billing functionality (预约扣费功能/连续包月功能) as requested by the community. The subscription billing feature enables merchants to automatically charge users on a recurring basis...
This PR addresses the user inquiry about "新版的企业微信流程审批" (new version WeChat Enterprise workflow approval) by providing comprehensive documentation that clarifies **WxJava already has full support** for this functionality. ## Issue...
The current `WxPayCodepayRequest` class only supports direct merchant mode but lacks support for service provider mode, which requires the `sub_mch_id` parameter. When using the codepay interface in service provider mode,...
This PR adds comprehensive customer service management functionality to the WeChat Mini Program SDK, addressing the gap identified in issue #3678. ## Problem The Mini Program module (`weixin-java-miniapp`) was missing...
This PR implements the enterprise WeChat intelligent robot interface as requested, providing comprehensive API support for managing and interacting with AI-powered robots in WeChat Work applications. ## Overview The implementation...
## Problem The `WxOpenMessageRouter` class only supported routing messages to `WxMpService` (公众号) but lacked support for `WxOpenMaService` (小程序/miniapp). This prevented developers from accessing mini-app specific functionality when handling mini-app messages...
4.7.6.B 是正常的。 ### 模块版本情况 * WxJava 模块名: 4.7.7.B * WxJava 版本号:(旧版本不予支持,谢谢配合) ### 详细描述 断点到这行就出问题 WxOpenXmlMessage inMessage = WxOpenXmlMessage.fromEncryptedXml(requestBody, wxOpenService.getWxOpenConfigStorage(), timestamp, nonce, msgSignature); @binarywang
### 简要描述 我的环境是jdk21,WxPayConfig是使用 payConfig.setPrivateKeyString(payChannel.getPrivateKey()); payConfig.setPrivateCertString(payChannel.getPrivateCert()); 调用统一下单报错:v3请求构造异常! ### 模块版本情况 * WxJava 模块名: weixin-java-pay * WxJava 版本号: 4.7.0 ### 详情描述 看这个问题发现和 #3443 很像,不知道是不是该问题,目前jdk21不能改,还有什么方法能临时解决一下吗? ### 日志 ``` WxPayException(customErrorMsg=v3请求构造异常!, returnCode=null, returnMsg=null, resultCode=null, errCode=null, errCodeDes=null,...
**支付回调结果解析报错** SpringBoot 3.4.2 ### 模块版本情况 * WxJava 模块名: 微信支付 * WxJava 版本号: 4.7.7.B public synchronized Result notify(@PathVariable Long barberOrderId,@RequestBody String notifyData) { try{ final WxPayOrderNotifyResult notifyResult = wxPayService.parseOrderNotifyResult(notifyData); }catch{.....} }...