Browse Source

场景查看权限校验

dengsixing 1 year ago
parent
commit
2af59350dc

+ 1 - 1
src/main/java/com/fdkankan/scene/Interceptor/CheckViewBizAuthAspect.java

@@ -195,7 +195,7 @@ public class CheckViewBizAuthAspect {
 						throw new BusinessException(ErrorCode.PASSWORD_ERROR);
 					}
 					headers.put("userName", userName);
-					headers.put("password", password);
+					headers.put("password", Base64Converter.decode(password));
 					checkNumAuth = myClient.checkNumAuth(url, headers);
 					if(checkNumAuth.getCode() == ServerCode.SUCCESS.code()){
 						data = checkNumAuth.getData();