Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
dd40714
:art: #3530 【微信支付】修复未设置平台证书引起的v3请求构造异常
SynchPj Apr 7, 2025
3f0b8d4
:art: #3538 【微信支付】V3接口增加实名支付参数
cloudX2019 Apr 7, 2025
4828a31
:art: #3534 为connectionRequestTimeout设置默认值,避免开发者在虚拟线程中调用框架的httpClient…
yangmengyu2021 Apr 7, 2025
0452a05
:art: 【小程序】修复物流服务查询组件更新物品信息接口的地址
Mar 19, 2025
b6c3d74
:new: #3529 【企业微信】增加批量设置应用在用户工作台展示的数据的接口
TanXiao1005 Mar 19, 2025
b44dd2e
:art: #3541【企业微信】增加设置WebView型应用在用户工作台展示的参数
TanXiao1005 Apr 7, 2025
373c1e6
:bug: #3522 【公众号】修复WxMpMapConfigImpl静态属性存储token导致多个实例时出现token没有隔离的情况
jimmyjimmy-sw Apr 7, 2025
833ff70
【企业微信】接待人员管理 添加接待人员/删除接待人员 增加 department_id_list
Mar 27, 2025
0423e68
:bookmark: 发布 4.7.4.B 测试版本
binarywang Apr 8, 2025
89280ab
:art: #3547【微信支付】修复验证器未正确初始化导致的v3请求构造异常问题
holylcd Apr 14, 2025
e16e0e9
:art: #3548【微信支付】修复公钥模式下V3接口未设置Wechatpay-Serial请求头导致的验签失败
HerveyHall Apr 15, 2025
bb76db0
:art: #3554【企业微信】修复审批通知节点获取不到用户ID的问题
hrygddv Apr 15, 2025
3718b49
:art: #3554【企业微信】修复审批通知节点获取不到用户ID的问题
hrygddv Apr 16, 2025
59f5a99
:new: 添加wx-java-channel-solon-plugin README.md
noear Apr 21, 2025
6a4ed91
:art: #3558 【企业微信】修复会话内容存档接口获取解密的聊天数据时文件信息转换出错的问题
tang2330 Apr 21, 2025
ddfbee2
:bug: #3557 【企业微信】修复agentId数据类型不一致导致的WxCpTpMessageRouterRule.test()方法…
giveup Apr 21, 2025
cbb3b24
:art: #3553【微信支付】v3请求统一加上Wechatpay-Serial请求头
SynchPj Apr 22, 2025
2279105
:art: 优化微信支付请求代码,抽取合并重复代码
binarywang Apr 26, 2025
2d8d1df
:new: #3320【企业微信】增加异步上传临时素材相关接口
imyzt Apr 29, 2025
854b50b
:art: 修复日志代码报错问题
binarywang Apr 29, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
🎨 【小程序】修复物流服务查询组件更新物品信息接口的地址
  • Loading branch information
cxiaoxifeng authored and binarywang committed Apr 7, 2025
commit 0452a05dd4e093dc50d4b3fed859521b830036fc
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ public GetDeliveryListResponse getDeliveryList() throws WxErrorException {

@Override
public WxMaBaseResponse updateWaybillGoods(UpdateWaybillGoodsRequest request) throws WxErrorException {
String responseContent = this.wxMaService.post(InstantDelivery.GET_DELIVERY_LIST_URL,request);
String responseContent = this.wxMaService.post(InstantDelivery.UPDATE_WAYBILL_GOODS_URL,request);
WxMaBaseResponse response = WxMaGsonBuilder.create().fromJson(responseContent, WxMaBaseResponse.class);
if (response.getErrcode() == -1) {
throw new WxErrorException(WxError.fromJson(responseContent, WxType.MiniApp));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ public interface InstantDelivery {
String GET_DELIVERY_LIST_URL =
"https://api.weixin.qq.com/cgi-bin/express/delivery/open_msg/get_delivery_list";

/** 获取运力id列表get_delivery_list 商户使用此接口获取所有运力id的列表 */
/** 物流服务-查询组件-更新物品信息接口 update_waybill_goods 更新物品信息 */
String UPDATE_WAYBILL_GOODS_URL =
"https://api.weixin.qq.com/cgi-bin/express/delivery/open_msg/update_waybill_goods";

Expand Down