我们如何在 agora 中生成 Stream sharable link?

How can we generate Stream sharable link in agora?

我们如何在 agora 中创建一个可共享的 link 流,以便我们可以共享它,其他人也可以加入它。 Agora 提供了任何一种功能,以便我们可以生成流 link???

您可以像嵌入任何其他查询参数一样嵌入这些参数。

示例 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