I would be obligated if you would kindly tell me about the means by which I can get youtube thumbnails using the Google API client library for Java, similar to how we extracted thumbnails using gdata.
List<String> thumbnails = new LinkedList<String>();
for (MediaThumbnail mediaThumbnail : mediaGroup.getThumbnails()) {
thumbnails.add(mediaThumbnail.getUrl());
}
Expecting, Regards, Roni
source
share