我想通过 redtube API 检索视频的细节。如果我在浏览器中复制并粘贴链接一切正常 http://api.redtube.com/?data=redtube.Videos.getVideoById&video_id=15485&output=json&thumbsize=all
注意:可能会冒犯某些用户,这是一个色情 API。
但是当我尝试通过 ajax 调用接收 json 对象时,没有给出任何结果并且调用出错
$.ajax({
url : 'http://api.redtube.com/?data=redtube.Videos.getVideoById&video_id=15485&output=json&thumbsize=all',
dataType : 'json',
success: function (res)
{
alert (res)
},
error : function (res) {alert(res.code);}
})
为什么?