use of com.tencentcloudapi.live.v20180801.LiveClient in project Ant-Live by PinTeh.
the class TencentConfig method getLiveClient.
@Bean
public LiveClient getLiveClient() {
Credential cred = new Credential(iii, kkk);
HttpProfile httpProfile = new HttpProfile();
httpProfile.setEndpoint("live.tencentcloudapi.com");
ClientProfile clientProfile = new ClientProfile();
clientProfile.setHttpProfile(httpProfile);
return new LiveClient(cred, "ap-chengdu", clientProfile);
}
Aggregations