I want to fetch a YouTube video title when the video id is known, using JavaScript only. Is it possible?
Yes, it is possible using Javascript and JSON.
https://developers.google.com/youtube/2.0/developers_guide_protocol_video_entries
See: https://developers.google.com/youtube/2.0/developers_guide_json
So you do it like this:
<script
type="text/javascript"
src="https://gdata.youtube.com/feeds/api/videos/videoid?v=2&alt=json-in-script&format=5&callback=getTitle">
</script>
And then:
function getTitle(data) {
var feed = data.feed;
var entries = feed.entry || [];
for (var i = 0; i < entries.length; i++) {
var entry = entries[i];
var title = entry.title.$t;
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With