Twitch 嵌入式剪辑错误 - 拒绝连接

Twitch Embedded Clips Error - Refusing to connect

我正在尝试在网站上嵌入抽搐剪辑和视频,感觉就像我的头撞到墙上一样。

我有一个文章部门持有一个嵌入的 twitch 剪辑。在我的 ftp 站点和本地主机上,嵌入的剪辑都不起作用。 我只能假设我的 parent 做错了什么,但我几乎尝试了所有方法。 我收到这个 twitch 连接错误 - 我已经跟随 twitch API 但没有正确。

不确定是否有所不同,但 html 文件位于目录 - abcstreamer.co.za/commingsoon/streamclips.html

这是我的本地托管代码:

<article class="stream stream-1 has-post-thumbnail">
                        <iframe 
                            src="https://clips.twitch.tv/embed?clip=EphemeralPlainSaladPipeHype-24G9rCNWcx09Wc42&parent=localhost:5500" 
                            allowfullscreen="true", 
                            autoplay=false,
                            height="100%" 
                            width="100%">
                        </iframe>
                </article>

下面是我的 ftp 站点代码:

<iframe 
                            src="https://clips.twitch.tv/embed?clip=EphemeralPlainSaladPipeHype-24G9rCNWcx09Wc42&parent=abcstreamer.co.za" 
                            allowfullscreen="true" 
                            autoplay="false",
                            height="100%" 
                            width="100%">
                        </iframe>

可能与 twitch API 打过交道的人可以帮助纠正我似乎看不到的错误。

abcstreamer.co.za 不存在所以我无法为您调试

Twitch 嵌入要求站点通过 SSL。

如果您的嵌入位于网站的 iframe 中,则可能需要多个 parent。站点构建器工具,例如 wix 会将嵌入和 iframe 放在站点上,因此您需要声明两个或多个父项。

所以你可能需要

https://clips.twitch.tv/embed?clip=EphemeralPlainSaladPipeHype-24G9rCNWcx09Wc42&parent=abcstreamer.co.za&parent=www.abcstreamer.co.za

要占 www.如果您不重定向 www.到非 www。或相反亦然。这同样适用于将非 SSL 用户重定向到 SSL 版本

https://clips.twitch.tv/embed?clip=EphemeralPlainSaladPipeHype-24G9rCNWcx09Wc42&parent=abcstreamer.co.za&parent=www.abcstreamer.co.za&parent=someotherdomain.com

如果 someotherdomain.com 处理站点构建器上的 iframe(如果有的话)

“超级线程”对确定您的父堆栈有进一步的建议https://discuss.dev.twitch.tv/t/the-great-big-im-using-wix-somewebsitemaking-tool-and-i-dont-know-how-to-fix-my-embed-thread/26297/