Skip to content

Instantly share code, notes, and snippets.

@dob
Created August 25, 2010 02:32
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save dob/548731 to your computer and use it in GitHub Desktop.
Save dob/548731 to your computer and use it in GitHub Desktop.
# If you post to a Ruby on Rails REST API endpoint, then you'll get an
# InvalidAuthenticityToken exception unless you set a different
# content type in the request headers, since any post from a form must
# contain an authenticity token.
#
# This example shows you how to post to a rails endpoint.
require 'json'
def post_to_endpoint(endpoint)
uri = URI.parse(endpoint)
post_params = {
:title => "2BR Apartment For Rent in NYC",
:description => "Great midtown west location. I love this place.",
:price => "1500",
:api_key => "my_api_key"
}
# Convert the parameters into JSON and set the content type as application/json
req = Net::HTTP::Post.new(uri.path)
req.body = JSON.generate(post_params)
req["Content-Type"] = "application/json"
http = Net::HTTP.new(uri.host, uri.port)
response = http.start {|htt| htt.request(req)}
end
@wxianfeng
Copy link

haaaaa, i use it to login redmine, to get login session cookie,

@mark-jordanovic-lewis
Copy link

you can also manually put the authentication tokens in the form submission request headers.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment