1

我正在尝试为 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}

我不能说我做错了什么。谢谢你的帮助。

4

1 回答 1

1

对于 POST 请求,curl将 设置Content-Typeapplication/x-www-form-urlencoded。Hubot 使用 Node 的 http 客户端,OTOH 没有对Content-Type标头使用任何默认值。如果没有明确的Content-Type标头,则资源http://strawpoll.me/api/v2/polls无法识别请求正文。您必须Content-Type手动设置标头以模仿 curl 的请求。

    robot.http('http://strawpoll.me/api/v2/polls')
    .headers({'X-Requested-With': 'XMLHttpRequest', 'Content-Type': 'application/x-www-form-urlencoded'})
    .post(data)
于 2015-03-02T18:13:03.163 回答