我试图使用ajax jsonp(使用回调)从Instagram删除类似而不使用任何php.i使用相同的代码为其他Instagram apis它的工作原因但由于某种原因我没有得到任何回复从这api调用和之类似的不会被删除。任何人都可以帮我解决这个问题吗?
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script>
function callApi2(){
$.ajax({
type: "POST",
dataType: "jsonp",
cache: false,
url: "https://api.instagram.com/v1/media/xxxxxx/likes?access_token=xxxxx&callback=function",
success: function(data) {
alert("response:"+data);
}
});
}
</script>
<button onclick="callApi2()">Try it</button>