错误405(此URL不支持HTTP方法GET)

时间:2012-02-17 10:36:42

标签: ajax youtube-javascript-api

我正面临这个问题 405(此网址不支持HTTP方法GET)

而该方法在我的代码中发布

$.ajax({
            url: myUrl + "?" + "token=" + AccessToken + "&key=" +dev_key,
            jsonp: 'callback',
            dataType: 'jsonp',
            type: 'post',
            data: sendXML,
            success: function (result) {
                alert("hjgh");
            }
        });

function callback(json)
    {
      alert("ghj");
    }

1 个答案:

答案 0 :(得分:0)

您将'jsonp'指定为'dataType'。这将导致该方法为“GET”,覆盖您的“类型”设置。