8000 修复 update_taskcard 方法,传参错误的问题 by th3ee9ine · Pull Request #2894 · binarywang/WxJava · GitHub
[go: up one dir, main page]

Skip to content

修复 update_taskcard 方法,传参错误的问题 #2894

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 11, 2022
Merged
Changes from 1 commit
Commits
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
modify:
1、修复 update_taskcard 方法,传参错误的问题
  • Loading branch information
chenjie03 committed Dec 9, 2022
commit 8d1f384812667a2bc0a0c8d2a9bac3b3e1d6b51c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ public void update(List<String> userIds, String taskId, String replaceName) thro
data.put("userids", userIds);
data.put("agentid", agentId);
data.put("task_id", taskId);
data.put("replace_name", replaceName);
// 文档地址:https://open.work.weixin.qq.com/wwopen/devtool/interface?doc_id=16386
data.put("clicked_key", replaceName);

String url = this.mainService.getWxCpConfigStorage().getApiUrl(UPDATE_TASK_CARD);
this.mainService.post(url, WxGsonBuilder.create().toJson(data));
Expand Down
0