保利威文档中心

帮助中心

Interface: AuthSetting

更新时间: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

鉴权配置

Properties

appId

appId: string

应用ID


sign

sign: string

校验签名

Example

签名计算示例,注意:请勿在前端代码出现明文appSecret,建议通过后端接口获取appSecret

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

校验时间戳

联系客服,在线咨询