我们如何在agora中创建流的可共享链接,以便我们可以共享它,其他人也可以加入它。agora提供了任何类型的功能,以便我们生成流链接???
您可以像嵌入任何其他查询参数一样嵌入这些参数。
示例URL:https://example.com/?channel=cha123&appid=183432424242
在JavaScript中:
let params = (new URL(document.location)).searchParams;
let channel = params.get('name'); // is the string "cha123".
let appid = params.get('appid'); // is the string "183432424242"
参考:https://developer.mozilla.org/en-US/docs/Web/API/URL/searchParams