字符串拼接错误

master
jiahuiwen 2021-11-17 18:28:35 +08:00
parent 0f7606efd3
commit a50144cc60
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ public class KTGetUserOpenIdController extends HttpServlet {
httpUrl.append(login_url).append("gid").append("=").append(gid).append("&")
.append("pid").append("=").append(pid).append("&")
.append("tm").append("=").append(tm).append("&")
.append("access_token").append("=").append(tm).append(token)
.append("access_token").append("=").append(token).append("&")
.append("sign").append("=").append(mySign);
LOGGER.info("KTGetUserOpenIdController request={}", httpUrl.toString());
String loginResult = HttpUtils.httpRequest(httpUrl.toString());