I am looking for a way to get an object for a specific video playlist on YouTube using the Zend library. I tried this piece of code:
$url = 'http://gdata.youtube.com/feeds/api/playlists/'.$_GET['plid'].'?v=2';
$feed = $yt->getVideoFeed($url);
$feed->delete();
But delete() apparently isn't a function of getVideoFeed() object. How do I go about making this work?
Thank you in advance.