Interface: AuthSetting
Updated: 2025-10-10 12:02:04
Polyv Wx Live Player Component
Polyv Wx Live Player Component / modules/plv-live-player-core/polyv-live-player / AuthSetting
Interface: AuthSetting
Authentication configuration
Properties
appId
appId:
string
Application ID
sign
sign:
string
Verification signature
Example
Signature calculation example. Note: Do not expose the plaintext appSecret in frontend code. It is recommended to obtain the appSecret through a backend API.
const params = {
appId: appId,
channelId: channelId,
timestamp: new Date().getTime(),
}
const appSecret = 'xxx';
const sign = getSign(params, appSecret);
/**
* 鉴权sign计算
*/
getSign(params: any, appSecret: string) {
const resortParam = (params: any) => {
const arr = Object.keys(params)
.filter(item => item !== 'sign')
.sort(); // 拿到除sign外字母顺序排列的key
let query = '';
arr.forEach(item => {
query += `${item}${params[item]}`;
});
return query;
};
const query = resortParam(params);
return md5(`${appSecret}${query}${appSecret}`).toUpperCase();
}
timestamp
timestamp:
number
Verification timestamp
