youtube-player icon indicating copy to clipboard operation
youtube-player copied to clipboard

feat: Add `otherParams` + `forceHttpsApi` options

Open Ballrock opened this issue 1 year ago • 0 comments

I saw that previous attempts of this modification was closed. Since i need it for a project i do this humble PR ^^

Thanks in advance

  • Force HTTPS API Options

This option allow user to force HTTPS protocol for IframeAPI loading. With the default option, Youtube Player guess the protocol from actual `window.location``

Usage :

player = YouTubePlayer('player', {
    videoId: 'M7lc1UVf-VE',
    otherParams: {
        forceHttpsApi: true
    }
});

Ballrock avatar Jun 06 '23 10:06 Ballrock