Created
May 8, 2017 17:24
-
-
Save narath/9e74cb7dd17050c76936fded2861f2d1 to your computer and use it in GitHub Desktop.
How to do a x-www-form-urlencoded post with Faraday
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'faraday' | |
require 'uri' | |
data = { | |
:your_data => "YOUR DATA" | |
} | |
url = "some url" | |
response = Faraday.post(url) do |req| | |
req.headers['Content-Type'] = 'application/x-www-form-urlencoded' | |
req.body = URI.encode_www_form(data) | |
end | |
puts response.inspect |
Thanks,
You save my time
Surprised it's not in the docs.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks 👍