Polyv Help Center

Help Center

Interface: AuthSetting

Updated: 2025-10-10 12:02:04

Polyv Wx Live Core SDK


Polyv Wx Live Core SDK / 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 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

Verification timestamp

联系客服,在线咨询