How do you get the Youtube channel picture -
How do you get the Youtube channel picture -
i want youtube channel's picture. getting video image it's simple: http://img.youtube.com/vi/" + item.videoid + "/mqdefault.jpg
solved.
var json = new webclient().downloadstring("http://gdata.youtube.com/feeds/api/users/"+yt_channel_name); string str = "thumbnail url='"; string imagepic = json.substring(json.indexof("thumbnail url") + str.length); if (imagepic.contains("'")) { imagepic = imagepic.remove(imagepic.indexof("'")); imagechannel.imageurl = imagepic; }
youtube
Comments
Post a Comment