This website doesn’t exist DNS_PROBE_FINISHED_NXDOMAIN

Old link! Sorry 'bout that. casualcompetitivetf2.ml

  1. Your website is not on forced SSL. SSL is required.
  2. Your website doesn’t load over SSL at all
  3. Correct URL to use is https://player.twitch.tv/?channel=casualcompetitivetf2&parent=casualcompetitivetf2.ml&parent=www.casualcompetitivetf2.ml&parent=coolstuffreal-wixsite-com.filesusr.com

Thank you so much, Barry!

I just want to say Thank You Barry! Following and copying your solution for other’s stream / sites has eventually solved mine! Thank you again!

Though I did want to ask one question, how can it be adjusted so that the stream box adjusts between Desktop and mobile? Cause on desktop is looks good, but on mobile the stream is over sized and zoomed in. Would it be written in the code?

Not sure why, but just recently I tried again the Wix’s Twitch box. Before it didn’t work for live stream and only worked for clips.
Just now it began to work with a live twitch:

Can’t really comment on the Wix internal tool shrug

Thats beyond the scope of this thread/forums, you need to apply the relevant CSS/media rules to match your needs

Hey ! Good to have this kind of topics open ! I’ve been reading through a bit of those answers and it seems like SSL would be my problem, but I’ll send the link of the site/article here : https://www.proximus.be/pickx/fr/2059729/fifa-play-x-unite-2020-la-belgique-devoile-ses-representants
It’s in french but no worries, the embed channel should be at the bottom of the article.
I don’t see anything in it sadly, what would be the play here ?
We use one wordpress before sending it to this site if this information is helpful.

Works here

1 Like

Hmmm :thinking: alright then xd thanks I guess

1 Like

I was trying to get my twich stream on my site but it showed this screen
Screenshot 2020-07-10 at 2.39.27 PM
my website is https://masonnorberg0.wixsite.com/lego-tv
If you could help me @BarryCarlyon that would great.

try


      new Twitch.Embed("twitch-embed", {
        width: '100%',
        height: '100%',
        channel: "sourceinvite",
        parent: ["masonnorberg0-wixsite-com.filesusr.com","masonnorberg0.wixsite.com"]
      });
    

where do I add the code

new Twitch.Embed(“twitch-embed”, {
width: ‘100%’,
height: ‘100%’,
channel: “sourceinvite”,
parent: [“masonnorberg0-wixsite-com.filesusr.com”,“masonnorberg0.wixsite.com”]
});

That replaces your existing code on the page

I don’t know where I went wrong but this showed up
image

You were using the embed code, now you’ve just made a whole pile of mess.

Do you want the iframe fix or the embed code fix? The original fix was for the script tags you were using preiovusly and you’ve now tried to put the embed script in as an iframe?!

I really just want it to work.

<html>
<head>
<script src="https://embed.twitch.tv/embed/v1.js"></script>
</head>
<body>
<div id="twitch-embed"></div>
<script>
      new Twitch.Embed("twitch-embed", {
        width: '100%',
        height: '100%',
        channel: "sourceinvite",
        parent: ["masonnorberg0-wixsite-com.filesusr.com","masonnorberg0.wixsite.com"]
      });
</script>
</body>
</html>

That worked thank you.