feat(): 添加客户端凭证字段支持

dev
lishiwei 2026-07-17 14:44:42 +08:00
parent 9f6cecb671
commit 9e3aea74b6
2 changed files with 4 additions and 0 deletions

View File

@ -384,6 +384,8 @@ public class VideoPlatformServiceImpl extends FireAlarmServiceSupport implements
co.setAuthStatus(AUTH_STATUS_SUCCESS);
co.setAuthorizedUserCount(null);
co.setResultMsg("固定会议室入会参数获取成功");
co.setClientId(properties.getClientId());
co.setClientSecret(properties.getClientSecret());
return SingleResponse.of(co);
}

View File

@ -24,4 +24,6 @@ public class VideoPlatformLoginCO extends ClientObject {
private Integer authStatus;
private Integer authorizedUserCount;
private String resultMsg;
private String clientId;
private String clientSecret;
}