Embedding Twitch Channel

I had force my website to use https and it works, I don’t know if it would work for you too djthirty, but I added .htaccess file to my website space and in there I copied:

RewriteEngine on
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteCond %{HTTP_USER_AGENT} !(BlackBerry)
RewriteCond %{HTTP_USER_AGENT} !(Windows\sNT\s5\.[12])
RewriteCond %{HTTP_HOST} ^(www\.)?yourwebsite.com
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L]

where you have to overwrite the “yourwebsite.com” section
Thank you, Jacob