Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Javascript REGEX: How to get youtube video id from URL?

I want to fetch a YouTube video title when the video id is known, using JavaScript only. Is it possible?

share|improve this question
He ask for title not id – Trinh Hoang Nhu May 15 '12 at 8:26
I thought the OP already has the video id and wants to fetch the title of the video (like, id is "099pb2c9pyg139p" and title is "Look at my funny cat"). – Juhana May 15 '12 at 8:28
hmm .. I already have video id.. I want to fetch video title... – SLAYER May 15 '12 at 8:29
1  
We have this stackoverflow.com/questions/1216029/… – Trinh Hoang Nhu May 15 '12 at 8:36
1  
We have this stackoverflow.com/questions/1216029/… – Trinh Hoang Nhu May 15 '12 at 8:36
show 2 more comments

marked as duplicate by PeeHaa 埽, tereško, Bill the Lizard May 16 '12 at 17:13

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 1 down vote accepted

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;
  }
 } 
share|improve this answer
deleted some unnecessary code parts – Daniel Ruf May 15 '12 at 9:52

Not the answer you're looking for? Browse other questions tagged or ask your own question.