Trying to direct upload with PHP Zend Gdata.
First I get single use token and that's all I need. I don't exchange it for session token.
Then the token appears in
<form method=post>
<input type=hidden name=token value=1/mknfdsnf9869324238472>
</form> along with other inputs
so I can transfer it to upload script with $_POST['token'].
When the user enters title description and tags, click submit, my upload script outputs this:
"Token invalid - Error while revoking token"
code from the script regarding AuthSub:
require_once('Zend/Loader.php');
Zend_Loader::loadClass('Zend_Gdata_YouTube');
Zend_Loader::loadClass('Zend_Gdata_AuthSub');
$httpClient = Zend_Gdata_AuthSub::getHttpClient($_POST['token']);
$devkey = 'nfoasd8f9fp34bfpupazudspf';
$yt = new Zend_Gdata_YouTube($httpClient,null,null,$devkey);
part of the code for VideoEntry:
$myVideoEntry = new Zend_Gdata_YouTube_VideoEntry();
$filesource = $yt->newMediaFileSource('downloads/6Cnxd7EFnOk.mp4');
$filesource->setContentType('video/mp4');
$filesource->setSlug('6Cnxd7EFnOk.mp4');
$myVideoEntry->setMediaSource($filesource);
$myVideoEntry->setVideoTitle($title);
$myVideoEntry->setVideoDescription($description);
$myVideoEntry->setVideoCategory($category);
$myVideoEntry->setVideoTags($tags);
part of code for uploading:
$uploadUrl = 'http://uploads.gdata.youtube.com/feeds/api/users/default/uploads';
try { $newEntry = $yt->insertEntry($myVideoEntry, $uploadUrl, 'Zend_Gdata_YouTu$
catch (Zend_Gdata_App_HttpException $httpException) {
echo $httpException->getRawResponseBody(); }
catch (Zend_Gdata_App_Exception $e) {
echo $e->getMessage(); }
What should I do?