Я пытаюсь отправить запрос POST на Ghostbin через Node.JS и его request
модуль NPM.Вот как выглядит мой код:
Попытка 1:
reqest.post({
url: "https://ghostbin.com/paste/new",
text: "test post"
}, function (err, res, body) {
console.log(res)
})
Попытка 2:
reqest.post({
url: "https://ghostbin.com/paste/new",
text: "test post",
headers: {
"Content-Type": "application/x-www-form-urlencoded",
"Content-Length": 9
}
}, function (err, res, body) {
console.log(res)
})
Попытка 3:
reqest.post("https://ghostbin.com/paste/new", {form: {text: "test post"}}, function (err, res, body) {
console.log(res)
})
Всеиз этих попыток закончилось ведение журнала:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">\n<html><head>\n<title>406 Not Acceptable</title>\n</head><body>\n<h1>Not Acceptable</h1>\n<p>An appropriate representation of the requested resource /paste/new could not be found on this server.</p>\n<hr>\n<address>Apache/2.4.18 (Ubuntu) Server at ghostbin.com Port 443</address>\n</body></html>
Что-то мне не хватает в библиотеке request
или в документации API Ghostbin ?