Skip to content

Instantly share code, notes, and snippets.

@greg606
Created September 11, 2012 17:18
Show Gist options
  • Save greg606/3699942 to your computer and use it in GitHub Desktop.
Save greg606/3699942 to your computer and use it in GitHub Desktop.
function get_youtube_metadata (id) {
$.getJSON('https://gdata.youtube.com/feeds/api/videos/'+ id +'?v=2&alt=json', function (data){
return {
name: data.entry.title.$t,
thumb: data.entry.media$group.media$thumbnail[0].url
}
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment