I am building a web site in PHP that integrates with Youtube. I want to have access to all comments that have been posted on a particular video.
When I use the Zend library, I can get the video comments feed, using the getVideoCommentFeed() method, but that returns only the latest comments.
Is there a way to get every comment that has been posted since the video was uploaded?
If it is not possible, I am considering using a cron job to fetch the comments feed periodically and save them locally, but that would be a last resort solution.