|
@@ -77,8 +77,8 @@ public class NotifyBusinessImpl implements INotifyBusiness {
|
|
reqVO.setUserTokens(tokenList);
|
|
reqVO.setUserTokens(tokenList);
|
|
|
|
|
|
String postJson = JSONUtil.toJsonStr(reqVO);
|
|
String postJson = JSONUtil.toJsonStr(reqVO);
|
|
- log.info("App permission notify URL:{}", notifyUrl);
|
|
|
|
- log.info("App permission notify post content:{}", postJson);
|
|
|
|
|
|
+ log.info("向认证服务发送应用级权限变更通知路径:{}", notifyUrl);
|
|
|
|
+ log.info("向认证服务发送应用级权限变更通知内容:{}", postJson);
|
|
String postResp;
|
|
String postResp;
|
|
try {
|
|
try {
|
|
postResp = HttpRequest.post(notifyUrl)
|
|
postResp = HttpRequest.post(notifyUrl)
|
|
@@ -92,7 +92,7 @@ public class NotifyBusinessImpl implements INotifyBusiness {
|
|
throw new RemoteAccessException(e.getMessage());
|
|
throw new RemoteAccessException(e.getMessage());
|
|
}
|
|
}
|
|
|
|
|
|
- log.info("App permission notify post response:{}", postResp);
|
|
|
|
|
|
+ log.info("向认证服务发送应用级权限变更响应:{}", postResp);
|
|
BimAppPermissionUpdateRespVo bimAppPermissionUpdateRespVo = JsonUtils.parseObject(postResp, BimAppPermissionUpdateRespVo.class);
|
|
BimAppPermissionUpdateRespVo bimAppPermissionUpdateRespVo = JsonUtils.parseObject(postResp, BimAppPermissionUpdateRespVo.class);
|
|
|
|
|
|
BimAppPermissionUpdateContentRespVO data = bimAppPermissionUpdateRespVo.getData();
|
|
BimAppPermissionUpdateContentRespVO data = bimAppPermissionUpdateRespVo.getData();
|