Skip to content

Commit

Permalink
!305 fix bug: 小程序分享二维码,请求参数类型应为Object
Browse files Browse the repository at this point in the history
Merge pull request !305 from GeekMo/master
  • Loading branch information
Chopper711 authored and gitee-org committed Oct 19, 2023
2 parents 4a4672c + 7523481 commit 96cfb8a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public String createCode(String page, String scene) {
shortLink = shortLinkService.queryShortLinks(shortLink).get(0);
}
String accessToken = wechatAccessTokenUtil.cgiAccessToken(ClientTypeEnum.WECHAT_MP);
Map<String, String> params = new HashMap<>(4);
Map<String, Object> params = new HashMap<>(4);
params.put("page", page);
params.put("scene", shortLink.getId());
params.put("width", "280");
Expand Down

0 comments on commit 96cfb8a

Please sign in to comment.