テキストをGithub のマークダウン APIに送信して、そのテキストの生の HTML 表現を取得しようとしています。
現在、私はこのコードを持っています:
$.ajax({
type: "POST",
dataType: "jsonp",
processData: false,
url: "http://api.github.com/markdown/raw",
data: {
"text": $('#some_textarea').val()
},
success: function(data){
console.log("success!");
console.log(data);
},
error: function(jqXHR, textStatus, error){
console.log(jqXHR, textStatus, error);
}
});
しかし、「エラー」が発生します(コールバックのtextStatus error
)。私は何を間違っていますか?