请帮我获取页面的内容,例如:
http://www.youtube.com/my_videos_annotate?feature=vm&v=someVideoId
使用 PHP/Curl。
我想我需要先登录 YouTube 的服务,但不知道该怎么做。
请帮我获取页面的内容,例如:
http://www.youtube.com/my_videos_annotate?feature=vm&v=someVideoId
使用 PHP/Curl。
我想我需要先登录 YouTube 的服务,但不知道该怎么做。
使用 youtube-api
示例
$feedURL = 'http://gdata.youtube.com/feeds/api/users/**ACCOUNTNAME**/uploads?max-results=50';
$sxml = simplexml_load_file($feedURL);
$i=0;
foreach ($sxml->entry as $entry) {
$media = $entry->children('media', true);
$watch = (string)$media->group->player->attributes()->url;
$thumbnail = (string)$media->group->thumbnail[0]->attributes()->url;
$input = array('http://www.youtube.com/watch?v=','&feature=youtube_gdata_player');
$change = array('','') ;
$link = @str_replace ($input ,$change, $watch);
echo $link.'</br>';
echo $thumbnail.'</br>'; //**thumbnail
echo $media->group->title.'</br>'; //**title
echo $media->group->description.'</br>'; //**description
}
希望这会有所帮助