6
require 'HTTParty'
require 'json'

@payload ={
    "email" => "phil@gmail.com",
    "token" => "mytokenstuff",
    "content" => "here is some content",
    "notification_type" => "1",
    "name" => "here is a name",
    "auto_action" => "true"
 }

response = HTTParty.post('http://localhost:3000/api/create.json', :body =>JSON.dump(@payload), :headers => { 'Content-Type' => 'application/json' } )

私の Rails コントローラーでは、ヘッダーは ContentType text/html に入っています。だから明らかに私のヘッダーパラメータは機能していません....

アイデア?

4

2 に答える 2

16

このようにしてみてください:

HTTParty.post(
  'http://localhost:3000/api/create.json', 
  :body => JSON.dump(@payload), 
  :headers => {
    'Content-Type' => 'application/json', 
  }
)

追加してみてくださいAccept

:headers => {
  'Content-Type' => 'application/json', 
  'Accept' => 'application/json'
}

また、Cookie からオプションを取得していないことを確認してください - Cookie を削除してください。

于 2012-07-17T05:01:07.007 に答える
0

HTTParty.post(<some link>, :body => "This is the body", :headers => {"Content-Type" => "text/html"})

と同じ:

options = {:body => "Same body", :headers => {"Content-Type" => "text/html"}}`
HTTParty.post(<same link>, options)`
于 2012-07-17T05:56:48.280 に答える