weixin-popular icon indicating copy to clipboard operation
weixin-popular copied to clipboard

微信SDK JAVA (公众平台、开放平台、 商户平台、 服务商平台)

Results 35 weixin-popular issues
Sort by recently updated
recently updated
newest added

https://api.weixin.qq.com/wxa/getpaidunionid 这个接口的api好像没有找到

最新版的退款接口也报这个错误,jdk7和8都报。 参照了MchPayNotify,加了JAXB 的注解定义马还是不行。 XMLConverUtil.convertToXML()是基于JAXB ,所以对应的类需要有JAXB 的注解定义,参照 MchPayNotify。 用了jaxb-impl,不报错这个了,但是后面setProperty时,还是路径不对, com.sun.xml.bind.characterEscapeHandler 报错空指针了,请问可以如何解决?

返回的xml里面包含ResultList 这个如何转化为对应的实体类? ` 2 1 0 2 1 1 1 1 2 0 2 1 1 1 1 2 `

# Vulnerability Information Bumps [apache-httpclient](https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient/4.3.6) from 4.3.6 to 4.5.3. Listed dependency **org.apache.httpcomponents:httpclient** contains vulnerable methods which are called from this project. This vulnerability appears to affect *httpclient* package versions lower...

文档https://pay.weixin.qq.com/wiki/doc/api/vehicle_v2_sl.php?chapter=20_992&index=1&p=202

https://github.com/liyiorg/weixin-popular/blob/499b2483bf2949e68c27476e4e6a4c3e82e392e1/src/main/java/weixin/popular/api/WxaAPI.java#L643

公司最近在做企业微信方面的开发

``` public static void main(String[] args) { Unifiedorder unifiedorder = new Unifiedorder(); unifiedorder.setSign("a"); String unifiedorderXML = XMLConverUtil.convertToXML(unifiedorder); System.out.println(unifiedorderXML); } ``` 环境:java14,以上代码执行会报警告: ``` content:WARNING: An illegal reflective access operation has occurred...

警告: 未知的枚举常量 XmlAccessType.FIELD 原因: 找不到javax.xml.bind.annotation.XmlAccessType的类文件

我这边引入该包实现微信的下载账单功能进行对账处理,生产上偶先cpu飙升到100%,导致对账任务失败,通过java自带dump线程分析工具,发现问题出在这个方法的str.matches(".*(.*|\\n)+.*")这个方法上面,正则表达是匹配的时候,回溯步数过高,麻烦看下如何处理呗。