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, this should be added to faraday documentation
Thanks!
I wish I could upvote you a million times, thanks
Thanks a lot!
Thnks!
Thanks mate, a lot
thx~
π
loveya
You're a king
Thank you for save my time.
I have not been able to make "application/x-www-form-urlencoded" requests with with Net::HTTP
... π
With Faraday it worked on first attempt. Thanks! π
AMAZING JOB!!!!!!
thanks π
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
Thank you my friend