I am facing this issue 405 (HTTP method GET is not supported by this URL)

whereas the method is post in my code

$.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");
    }
link|improve this question

1  
possible duplicate of ajax POST method is not working – Sudhir Mar 6 at 8:56
"?" + "token=" could be rewritten as "?token=" – Roberto Aloi Mar 16 at 9:22
it dose not matter @RobertoAloi – Rana Muhammad Usman Mar 16 at 10:17
What "it doesn't matter?" :S – Roberto Aloi Mar 16 at 13:02
"?" + "token=" does not make any affect – Rana Muhammad Usman Mar 19 at 5:36
show 1 more comment
feedback

1 Answer

up vote 0 down vote accepted

You specified 'jsonp' as your 'dataType'. That will cause the method to be 'GET', overriding your 'type' settings.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.