Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
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' } )

In my rails controller, the header is coming in ContentType text/html. So obviously my headers param isn't working....

ideas?

share|improve this question

2 Answers

Try it this way

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

Edit:

Try to add accept

headers => { 'ContentType' => 'application/json', 'Accept' => 'application/json'}

Also, check that it is not grabbing the options from a cookie - Clean the cookies.

share|improve this answer
I tried this too. Same result, the request is received as text/html, not application/json. – phil swenson Jul 17 '12 at 14:20
The edit worked for me! thanks :) – bpn Aug 20 '12 at 13:23

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

Same as:

options = {:body => "Same body", :headers => {"Content-Type" => "text/html"}}`
HTTParty.post(<same link>, options)`
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.