gpt4 book ai didi

javascript - 在网站上实现 twitch Stream

转载 作者:行者123 更新时间:2023-11-28 19:54:32 24 4
gpt4 key购买 nike

我目前正在为 friend 的 twitch 流制作一个网站,我对如何实现 twitch 流感到非常困惑。我已经创建了一个带有“Twitchscreen”类的 div,但我不知道如何链接到 twitch API 或将流放入“twitchscreen”框中。请帮忙,非常感谢。

最佳答案

看看它是如何在 TeamLiquid 页面中完成的(查看源代码) - 他们像这样使用 IFrame:

<iframe class="videoplayer" src="http://www.twitch.tv/embed?channel=khaldor" height="478" width="800" frameborder="0" scrolling="no"></iframe>

所以事情可能就这么简单..

要将其嵌入到页面上,只需将 IFrame 放在您想要的任何位置,然后将 channel 查询字符串从 khaldor 更改为您在 twitch 上的用户名(针对您的 channel )。

聊天应该以同样的方式完成。

关于javascript - 在网站上实现 twitch Stream,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22815354/

24 4 0