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 に入っています。だから明らかに私のヘッダーパラメータは機能していません....
アイデア?