I use Zend and PHP to download and delete videos from my homepage. The download part works fine, but the download is more complicated.
$videoEntryToDelete = $yt->getVideoEntry($videoId); $yt->delete($videoEntryToDelete);
I use this code to delete a video and the first line works. A video object is created, and I can get all the data from it. But when I try to delete it, I get this error message: "You must specify the URI to which the message should be sent
Does anyone know how to solve this problem?
Thanks!
source share