gpt4 book ai didi

json - 405方法不允许-尝试使用Mootools从Youtube检索JSON提要的Firebug错误

转载 作者:行者123 更新时间:2023-12-03 05:52:11 25 4
gpt4 key购买 nike

在 Firebug 中出现错误,并且显然没有内联反馈。

“NetworkError:405方法不允许-http://gdata.youtube.com/feeds/api/playlists/67621C8899ABADA5?alt=json

var loadVideos = function()
{
var req = new Request.JSON(
{
url: 'http://gdata.youtube.com/feeds/api/playlists/67621C8899ABADA5?alt=json',
method: 'get',
onSuccess: function(jsonData)
{
//successCode
}
}).send();
}

我不了解发生了什么问题,我可以在浏览器中请求该URL,但是Request.JSON不能?

最佳答案

您不能使用“简单” JSON请求从其他域检索数据(请参阅相同的原始策略)。您应该改用JSONP

var req = new Request.JSONP(
{
url: 'http://gdata.youtube.com/feeds/api/playlists/67621C8899ABADA5?alt=json',
method: 'get',
onSuccess: function(jsonData)
{
//successCode
}
}).send();

关于json - 405方法不允许-尝试使用Mootools从Youtube检索JSON提要的Firebug错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7020569/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com