发送通过HTTParty发送的帖子查询

Pez*_*lio 3 ruby buffer ruby-on-rails httparty

我正在使用带有HTTParty的Buffer App API尝试通过/ updates/create方法添加帖子,但是API似乎忽略了我的"text"参数并引发了错误.如果我在命令行上通过cURL这样做,它可以很好地工作.这是我的代码:

class BufferApp
    include HTTParty
    base_uri 'https://api.bufferapp.com/1'

    def initialize(token, id)
        @token = token
        @id = id
    end

    def create(text)
        BufferApp.post('/updates/create.json', :query =>  {"text" => text, "profile_ids[]" => @id, "access_token" => @token})
    end 
end
Run Code Online (Sandbox Code Playgroud)

我正在运行这样的方法:

BufferApp.new('{access_token}', '{profile_id}').create('{Text}')
Run Code Online (Sandbox Code Playgroud)

我已经添加debug_output $stdout到课程中,它似乎发布好了:

POST /1/updates/create.json?text=Hello%20there%20why%20is%20this%20not%20working%3F&profile_ids[]={profile_id}&access_token={access_token} HTTP/1.1\r\nConnection: close\r\nHost: api.bufferapp.com\r\n\r\n"
Run Code Online (Sandbox Code Playgroud)

但是我收到了一个错误.我错过了什么吗?

Mar*_*mas 19

我查看了API,并且更新期望JSON位于POST主体中,而不是查询字符串.尝试:body而不是:query:

    def create(text)
        BufferApp.post('/updates/create.json', :body => {"text" => text, "profile_ids[]" => @id, "access_token" => @token})
    end
Run Code Online (Sandbox Code Playgroud)