feat(): 添加客户端凭证字段支持
parent
9f6cecb671
commit
9e3aea74b6
|
|
@ -384,6 +384,8 @@ public class VideoPlatformServiceImpl extends FireAlarmServiceSupport implements
|
||||||
co.setAuthStatus(AUTH_STATUS_SUCCESS);
|
co.setAuthStatus(AUTH_STATUS_SUCCESS);
|
||||||
co.setAuthorizedUserCount(null);
|
co.setAuthorizedUserCount(null);
|
||||||
co.setResultMsg("固定会议室入会参数获取成功");
|
co.setResultMsg("固定会议室入会参数获取成功");
|
||||||
|
co.setClientId(properties.getClientId());
|
||||||
|
co.setClientSecret(properties.getClientSecret());
|
||||||
return SingleResponse.of(co);
|
return SingleResponse.of(co);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -24,4 +24,6 @@ public class VideoPlatformLoginCO extends ClientObject {
|
||||||
private Integer authStatus;
|
private Integer authStatus;
|
||||||
private Integer authorizedUserCount;
|
private Integer authorizedUserCount;
|
||||||
private String resultMsg;
|
private String resultMsg;
|
||||||
|
private String clientId;
|
||||||
|
private String clientSecret;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue