I am try to get oembed code of youtube link with ajax but it returns always error I am using ajax with Jquery
$.ajax({
method: 'GET',
dataType :'json',
url:'http://www.youtube.com/oembed?url=http://www.youtube.com/watch?v=wbp-3BJWsU8&format=json',
success:function(data){
alert(data);
},
error: function(error) {
alert(error);
}
});