我正在尝试为 Hubot 编写一个脚本来对 Strawpoll.me 进行 AJAX 调用。我有一个 cURL 命令可以完全按照我想要的方式工作,但是我无法将其转换为 Node.js 函数。
curl --header "X-Requested-With: XMLHttpRequest" --request POST --data "options=1&options=2&options=3&options=4&options=5&title=Test&multi=false&permissive=false" http://strawpoll.me/api/v2/polls
这是我目前在我的脚本中的内容。
QS = require 'querystring'
module.exports = (robot) ->
robot.respond /strawpoll "(.*)"/i, (msg) ->
options = msg.match[1].split('" "')
data = QS.stringify({
title: "Strawpoll " + Math.floor(Math.random() * 10000),
options: options,
multi: false,
permissive: true
})
req = robot.http("http://strawpoll.me/api/v2/polls").headers({"X-Requested-With": "XMLHttpRequest"}).post(data) (err, res, body) ->
if err
msg.send "Encountered an error :( #{err}"
return
msg.reply(body)
脚本版本正在返回{"error":"Invalid request","code":40}
我不能说我做错了什么。谢谢你的帮助。