The great big "I'm using WIX/SomeWebsiteMaking Tool and I don't know how to fix my embed" thread

The channel embed stopped working on our wordpress website due to the recent update.

The embed used to work successfully. I’ve been using JS in Wordpress. After the update we saw the “refused to frame” error. I then updated the code to include the parent parameter (where I entered all the possible url versions), but now we see the “this embed is misconfigured” error. Any suggestions?

This is the current bit of code:

<!-- Load the Twitch embed script -->
<script src="https://embed.twitch.tv/embed/v1.js"></script>

<!-- Create a Twitch.Embed object that will render within the "twitch-embed" root element. -->
<div align="center" id="twitch-embed"></div>
<script type="text/javascript">
  new Twitch.Embed("twitch-embed", {
    width: '100%',
    height: '100%',
    channel: "damdtv",
    parent: ["cinemaofthedamd.nl/collective/", "www.cinemaofthedamd.nl/collective/", "cinemaofthedamd.nl", "www.cinemaofthedamd.nl"]
  });
</script>