收藏
回答

com.github.wechatpay-apiv3,合作伙伴调用Native支付不能信用卡支付吗?

<!--微信支付-->
<dependency>
    <groupId>com.github.wechatpay-apiv3</groupId>
    <artifactId>wechatpay-java</artifactId>
    <version>0.2.12</version>
</dependency>
// 调用下单方法,得到应答
PrepayResponse response = service.prepay(request);
// 使用微信扫描 code_url 对应的二维码,即可体验Native支付
System.out.println(response.getCodeUrl());
Map<String, Object> map = new HashMap<>(1);
map.put("codeUrl", response.getCodeUrl());
return map;


回答关注问题邀请回答
收藏
登录 后发表内容