Нужно мне отправить код в PasteBin через их Api, вот как я делаю
$.ajax({
url: "http://pastebin.com/api/api_post.php",
type: "POST",
dataType: "JSONP",
data: {
"api_dev_key": "9c3ccefe915590a6fd979be4f2a54f27",
"api_option": "paste",
"api_paste_code": "blah blah",
"api_paste_expire_date":"10M",
"api_paste_private":"0"
},
success: function(res) {
console.log(res);
},
error: function(res) {
console.log("Error");
}
});
Хром начинает ругаться "SyntaxError: Unexpected identifier" а Ajax запрос выводит "Error"