修复token刷新问题,添加postman测试文件

This commit is contained in:
macro
2019-03-12 10:18:36 +08:00
parent 03b225fd1b
commit efb540cb09
3 changed files with 517 additions and 1 deletions

View File

@@ -71,7 +71,7 @@ public class UmsAdminController {
return new CommonResult().failed();
}
Map<String, String> tokenMap = new HashMap<>();
tokenMap.put("token", token);
tokenMap.put("token", refreshToken);
tokenMap.put("tokenHead", tokenHead);
return new CommonResult().success(tokenMap);
}