I was trying to make an application which will upload videos to you tube using API.For this i was applying AuthSubRequest,I dont want to use ClientLogin as it is showing me authentication issues.I am then applying AuthSubSessionToken.I m able to extract the token from it but i dont know how to proceed further.My code is as follows:
<html>
<title>Upload your Videos</title>
<script type="text/javascript">
function submitForms(){
document.forms["frmYoutube"].submit();
document.forms["frmVimeo"].submit();
document.forms["frmDaily"].submit();
document.forms["frmViddler"].submit();
}
</script>
<?php
if(!isset($_REQUEST['token'])){
$nextUrl = urlencode('http://video.loc');
$curl = curl_init("https://www.google.com/accounts/AuthSubRequest?next=".$nextUrl."&scope=http%3A%2F%2Fgdata.youtube.com&session=1&secure=0");
//$curl = curl_init("https://www.google.com/accounts/ClientLogin");
curl_setopt($curl, CURLOPT_HEADER, "Content-Type:application/x-www-form-urlencoded");
curl_setopt($curl, CURLOPT_POST, 1);
//curl_setopt($curl, CURLOPT_POSTFIELDS, $postdata);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 1);
$response = curl_exec($curl);
//$response = $curl;
print('<pre>');print_r($response);die();
curl_close($curl);
}
$youtube_video_title = "Test.loc"; // This is the uploading video title.
$youtube_video_description = "Test.loc"; // This is the uploading video description.
$youtube_video_category = "Test.loc"; // This is the uploading video category.
$youtube_video_keywords = "Test.loc"; // This is the uploading video keywords.
$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">
<media:group>
<media:title type="plain">'.$youtube_video_title.'</media:title>
<media:description type="plain">'.$youtube_video_description.'</media:description>
<media:category
scheme="http://gdata.youtube.com/schemas/2007/categories.cat">'.$youtube_video_category.'</media:category>
<media:keywords>'.$youtube_video_keywords.'</media:keywords>
</media:group>
</entry>';
$key = "xxx"; // Get your key here: http://code.google.com/apis/youtube/dashboard/.
/*$headers = array("Authorization: GoogleLogin auth=".$authvalue,
"GData-Version: 2",
"X-GData-Key: key=".$key,
"Content-length: ".strlen($data),
"Content-Type: application/atom+xml; charset=UTF-8"); */
If(isset($_REQUEST['token'])){
$headers = array('Authorization: AuthSub token="'.$_REQUEST['token']
);
$curl = curl_init("https://www.google.com/accounts/AuthSubSessionToken");
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_TIMEOUT, 10);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
//$response = $curl;
$response = curl_exec($curl);
$arrToken = explode('=',$response);
curl_close($curl);
}
$nexturl = "http://test.loc";
?>
<form name='frmYoutube' id='frmYoutube' action="<?php echo($response->url); ?>?nexturl=<?php echo(urlencode($nexturl)); ?>" method="post" enctype='multipart/formdata'>
<input type="hidden" name="token" value="<?php echo $arrToken['1']; ?>"/>
<table border='0' cellpadding="0" style="margin-left:536px;" cellspacing="">
<tr>
<td align="right" width="30%"><strong>Youtube:</strong></td>
<td><input type="file" name="youtubeVid" id="youtubeVid" /></td>
</tr>
</table>
</form>
I am not sure if i am in a right direction also cant find much help on the internet.Please help me to get it working.Thanx for your support in advance.