Full HTTPS (SSL) support for YouTube player is still not implemented in version:
7.x-2.0-rc4+22-dev

I suggest to change hard coded 'http://...' links to just "//..'
though that the protocol can be selected by the system automatically ..
ok?

line 25:
$response = drupal_http_request('http://img.youtube.com/vi/' . $v . '/maxresdefault.jpg');
$response = drupal_http_request('//img.youtube.com/vi/' . $v . '/maxresdefault.jpg');
line 30:
return 'http://img.youtube.com/vi/' . $v . '/0.jpg';
return '//img.youtube.com/vi/' . $v . '/0.jpg';
line 32.
return 'http://img.youtube.com/vi/' . $v . '/maxresdefault.jpg';
return '//img.youtube.com/vi/' . $v . '/maxresdefault.jpg';

in file: MediaInternetYouTubeHandler
line 71:
$oembed_url = url('http://www.youtube.com/oembed', array('query' => array('url' => $external_url, 'format' => 'json')));
$oembed_url = url('https://www.youtube.com/oembed', array('query' => array('url' => $external_url, 'format' => 'json')));
...

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

K. Tadesse’s picture

K. Tadesse’s picture

Issue summary: View changes
K. Tadesse’s picture

apaderno’s picture

Issue tags: -ssl https transparent
jeffschuler’s picture

Status: Active » Fixed

URLs specify https:// now.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.