Can anybody tell me, is it possible, to get the title of youtube video from their youtube url in angularjs. In my project , i need to save my uploaded youtube url in database and but my problem is , i only save url of video ,not the title of youtube video.Please tell me if any body have idea.
I checked lot of examples, they talked about ,the below url,: https://gdata.youtube.com/feeds/api/videos/"+videoid+"?v=2
i used the above url, in angular controller with http get method.
$http.get(https://gdata.youtube.com/feeds/api/videos/"+videoid+"?v=2).success(function(data)
{
console.log(data)
});
It return 410 error. Please help me.