Commit ed6c583e authored by 罗超's avatar 罗超

新增呼叫平台

parent 360f6033
......@@ -546,6 +546,9 @@ export default {
border-radius: 50%;
z-index: 2;
}
.MuiBadge-root {
display: none !important;
}
.wave_wrapper span.wave_scale {
animation: wave_scale 2s both infinite;
......
const tencentcloud = require("tencentcloud-sdk-nodejs-ccc");
const CccClient = tencentcloud.ccc.v20200210.Client;
const clientConfig = {
credential: {
secretId: "SecretId",
secretKey: "SecretKey"
},
region: "",
profile: {
httpProfile: {
endpoint: "ccc.tencentcloudapi.com"
}
}
};
const client = new CccClient(clientConfig);
const params = {
SdkAppId: 1400617921,
SeatUserId: "alex9012@vip.qq.com"
};
client.CreateSDKLoginToken(params).then(
data => {
console.log(data);
},
err => {
console.error("error", err);
}
);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment