Help me in embedding twitch

You embed does not include the JS Embed helper.

So it cannot init a embed

You need a <script src= "https://embed.twitch.tv/embed/v1.js"></script> before your script block.

You also do not need the " around the window location parnet

So your full code should be

<script src= "https://embed.twitch.tv/embed/v1.js"></script>
<script type="text/javascript">
  new Twitch.Player("twitch-embed", {
    channel: "reinschannelyt",
    parent: ["sites.google.com", "www.gstatic.com", window.location.host],
    width: 600,
    height: 300
  });
</script>