保利威文档中心

幫助中心

介面: AuthSetting

更新時間:2025-10-10 12:02:04

Polyv Wx Live Core SDK


Polyv Wx Live Core SDK / AuthSetting

介面: AuthSetting

鑑權配置

屬性

appId

appId: string

應用程式ID


sign

sign: string

校驗簽名

範例

簽名計算範例,注意:請勿在前端程式碼出現明文appSecret,建議透過後端API取得appSecret

const params = {
  appId: appId,
  channelId: channelId,
  timestamp: new Date().getTime(),
}
const apiSecret = '123456';

function getSign(obj: any, apiSecret: string) {
  const resortParam = (obj: any) => {
    const arr = Object.keys(obj)
      .filter(item => item !== 'sign')
      .sort(); // 拿到除sign外字母顺序排列的key
    let query = '';
    arr.forEach(item => {
      query += `${item}${obj[item]}`;
    });
    return query;
  };
  const query = resortParam(obj);
  return md5(`${apiSecret}${query}${apiSecret}`).toUpperCase();
}
const sign = getSign(params, apiSecret);

timestamp

timestamp: number

校驗時間戳

联系客服,在线咨询