MaxK
MaxK

Reputation: 437

How to retrieve title of YouTube video via URL

I have used this tutorial on the Java Youtube API to get the URL and thumbnail URLs for videos in a youtube search: http://www.javacodegeeks.com/2010/05/getting-started-with-youtube-java-api.html

What I now need to do is take the URL of the search results and retrieve the title of the video but I am not sure how to do this. Any help is much appreciated.

Upvotes: 1

Views: 1591

Answers (1)

Antonello Gatto
Antonello Gatto

Reputation: 1611

videoEntry.getTitle().getPlainText();

Upvotes: 1

Related Questions