I have a page on my localhost from where users can upload videos. Now I'd like to implement the function, where admins can make those videos public (users must upload them as private videos). Now for that, first of all I need to get a list of all videos on channel (including the private ones). I tried this code:
$data = '<?xml version="1.0"?>
<entry xmlns="http://www.w3.org/2005/Atom"
xmlns:media="http://search.yahoo.com/mrss/"
xmlns:yt="http://gdata.youtube.com/schemas/2007">
</entry>';
$headers = array( "Authorization: GoogleLogin auth=".$authvalue,
"GData-Version: 2",
"X-GData-Key: key=".$youtube_key,
"Content-length: ".strlen( $data ),
"Content-Type: application/atom+xml; charset=UTF-8");
$curl = curl_init( "https://gdata.youtube.com/feeds/api/users/default/uploads");
curl_setopt( $curl, CURLOPT_USERAGENT, $_SERVER["HTTP_USER_AGENT"] );
curl_setopt( $curl, CURLOPT_RETURNTRANSFER, true );
curl_setopt( $curl, CURLOPT_TIMEOUT, 10 );
curl_setopt( $curl, CURLOPT_SSL_VERIFYPEER, false );
curl_setopt( $curl, CURLOPT_POST, 1 );
curl_setopt( $curl, CURLOPT_FOLLOWLOCATION, 1 );
curl_setopt( $curl, CURLOPT_HTTPHEADER, $headers );
curl_setopt( $curl, CURLOPT_POSTFIELDS, $data );
curl_setopt( $curl, CURLOPT_REFERER, true );
curl_setopt( $curl, CURLOPT_FOLLOWLOCATION, 1 );
curl_setopt( $curl, CURLOPT_HEADER, 0 );
$response = curl_exec($curl);
curl_close($curl);
which returns with this error:
<!DOCTYPE html>
<html lang=en>
<meta charset=utf-8>
<meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
<title>Error 400 (Bad Request)!!1</title>
<style>
*{margin:....
I couldn't find the proper form of headers for requesting a list of user videos, so I used the one which I apply for uploading videos (and which works, so I am certain there is not a problem with user authentication).
If you could tell me what I am doing wrong or just point me to an example of working video listing, I'd be very grateful.
edit: curl_error returns an empty string, curl_info returns this:
array (size=26)
'url' => string 'https://uploads.gdata.youtube.com/feeds/api/users/.../uploads' (length=80)
'content_type' => string 'text/html; charset=UTF-8' (length=24)
'http_code' => int 400
'header_size' => int 597
'request_size' => int 1747
'filetime' => int -1
'ssl_verify_result' => int 20
'redirect_count' => int 1
'total_time' => float 0.639
'namelookup_time' => float 0.047
'connect_time' => float 0.078
'pretransfer_time' => float 0.172
'size_upload' => float 0
'size_download' => float 925
'speed_download' => float 1447
'speed_upload' => float 0
'download_content_length' => float 925
'upload_content_length' => float 0
'starttransfer_time' => float 0.203
'redirect_time' => float 0.436
'certinfo' =>
array (size=0)
empty
'primary_ip' => string '173.194.70.117' (length=14)
'primary_port' => int 443
'local_ip' => string '10.0.0.33' (length=9)
'local_port' => int 53639
'redirect_url' => string '' (length=0)
curl_errorand detailed response fromcurl_info. Everything starts with debug. End your curl withcurl_close()too. – Shivan Raptor Dec 24 '12 at 9:42phpinfo()to check whether you installed it. – Shivan Raptor Dec 27 '12 at 12:18