Twitch Embedded Player Migration - Timeline Update

Why not just enable SSL and ensure that it is forced on your website @cretinhopla?
In Squarespace settings in your website go to Settings->Advanced->SSL

Thanks, Adam. That helped a bunch. Still a bummer on thumbnail option. I donā€™t have that option for Embed Block and Video Block doesnā€™t seem to work at all. Either way this relieves some stress.

I will add that it MAY make a difference if you are using SquareSpace 7.0 or 7.1. This really screwed me a few months ago on other features and I had to remodel my entire site to work in a new 7.1 template. SquareSpace upgrading everything around February and if you are on 7.0 still, which many are, some things work differently. Just something to note and thatā€™s definitely not a Twitch issue. Beyond that Javascript should work in the Embed module and the iFrame should work in both the video and Embed Modules. You could inject the code too but I know how much of a pain that is.

Thanks. Iā€™ll definitely look into. My template might be out dated at this point and wouldnā€™t be the worst idea to update the whole thing just a project in itself.

Edit
This can be attributed to a lack of understanding where my source request was coming from. I was actually viewing a static HTML file referencing the javascript - you canā€™t do this because your source request for the embed is actually the file itself and not ā€œlocalhostā€.

Basic setup for Windows:

  • Turn on Windows Features (IIS)
  • Create a self-signed cert in powershell
  • create your static site in IIS and assign the certificate
  • host your static site in the application directory
  • set the parent key in the embed to parent: []

Magic.

If youā€™re referencing another site from your localhost site, you need to set the domain in parent: [ā€˜yourdomainā€™,ā€˜anotherdomainā€™,ā€˜moreā€™]

Leaving the previous below to help others

So is it possible to use javascript embeds and develop from localhost? It seems that discussion got lost halfway through and it never came back up. I saw the part about setting up SSL but thatā€™s just an absurd requirement for developing in my given scenario.

Iā€™m getting this error

[NoParent] parent query string value was not specified

With the following html:

<html>
  <head>
    <script src= "./twitch_player.js"></script>
  </head>
  <body>
    <!-- Projectors -->
    <div id="twitch_projector_1"></div>
    <!-- Streams -->
    <!-- xxx -->
    <script type="text/javascript">
      var options = {
          width: 1920/2,
          height: 1080/2,
          channel: "xxx",
          migration: "true",
          parent: ["localhost"]
      };
      var player = new Twitch.Player("twitch_projector_1", options);
      player.setVolume(0.5);
    </script>
  </body>
</html>

Request shows that two parent parameters were passed, one is ā€œlocalhostā€ the other is ā€œā€ (blank).

Request URL: https://player.twitch.tv/embed-error.html?errorCode=NoParent&content=player.twitch.tv%2F%3Fchannel%3Dxxx%26height%3D540%26migration%3Dtrue%26parent%3Dlocalhost%26parent%3D%26referrer%3Dfile%253A%252F%252F%252FC%253A%252FUsers%252Fbrett%252FDownloads%252Fteambss_twitch.html%26width%3D960

When using the iframe option, it just refuses to connect.

A post was merged into an existing topic: The great big ā€œIā€™m using WIX/SomeWebsiteMaking Tool and I donā€™t know how to fix my embedā€ thread