Found 18 repositories(showing 18)
minimul
Ruby JSON-only client for QuickBooks Online API v3. Built on top of the Faraday gem.
mislav
[deprecated] Über Faraday stack for consuming APIs (JSON, XML decoding & more)
MultiJson parser for Faraday
Faraday middleware for parsing JSON using the Oj parser.
EliseWindbloom
Small script using Python to convert BackyardAI/Faraday PNG character cards to TavernAI PNG/JSON format
Faraday Middleware for JSON HAL requests and responses
SebastianEdwards
Collection+JSON parsing middleware for faraday.
mexisme
My version of a JSON-RPC client, using Faraday
marktran
A remote HTTP/JSON resource client built with Faraday & ActiveModel, inspired by ActiveResource.
spriteCloud
Encoding-aware JSON middleware for Faraday
oestrich
No description available
bang-olufsen
Production tool that combines multiple JSON strings into one.
okitan
Faraday Middleware coping with variety of json (patch, hal, etc)
A simple Faraday middleware to use FastJsonparser to parse JSON responses.
Faraday middleware for parsing JSON as openstruct Object
leminhtuan2015
No description available
aur-archive
No description available
panicha
conn = Faraday.new(:url => 'http://sushi.com') do |faraday| faraday.request :url_encoded # form-encode POST params faraday.response :logger # log requests to STDOUT faraday.adapter Faraday.default_adapter # make requests with Net::HTTP end ## GET ## response = conn.get '/nigiri/sake.json' # GET http://sushi.com/nigiri/sake.json response.body conn.get '/nigiri', { :name => 'Maguro' } # GET http://sushi.com/nigiri?name=Maguro conn.get do |req| # GET http://sushi.com/search?page=2&limit=100 req.url '/search', :page => 2 req.params['limit'] = 100 end ## POST ## conn.post '/nigiri', { :name => 'Maguro' } # POST "name=maguro" to http://sushi.com/nigiri # post payload as JSON instead of "www-form-urlencoded" encoding: conn.post do |req| req.url '/nigiri' req.headers['Content-Type'] = 'application/json' req.body = '{ "name": "Unagi" }' end ## Per-request options ## conn.get do |req| req.url '/search' req.options.timeout = 5 # open/read timeout in seconds req.options.open_timeout = 2 # connection open timeout in seconds end
All 18 repositories loaded