網頁啟動直播客戶端
更新時間:2022-05-24 14:30:02
描述
提供网页启动客户端的一种支持,让您快速从页面中启动polyv直播客户端,而不必去应用程序列表中查找
新版(4.x)客戶端啟動
註:僅適用於新版客戶端,舊版客戶端會開啟失敗
const client4xStart = 'polyvlive';
const url = `${client4xStart}://start?channelId=${channelId}&passwd=${password}&pdn=api.polyv.net`;
window.location.assign(url);
舊版客戶端啟動(目前新舊版皆相容,之後新版客戶端將移除支援)
const clientStart = 'polyvlive';
const url = `${clientStart}:/${channelId}&${password}`;
window.location.assign(url);
