I'm working against an API that forces me to send the same parameter's name multiple times to cascade different filtering criteria. So a sample api GET call looks like this:
GET http://api.site.com/search?a=b1&a=b2&a=b3&a=c2
I'm using Faraday for my REST adapter, which takes its URL parameters as a Hash (therefore - it has unique keys). This means I cannot do something like this:
response = Faraday.new({
url: 'http://api.site.com/search'
params: { a: 'b1', a: 'b2', a: 'b3', a: 'c2' } # => nay
}).get
I tried to hack on the url right before the request is sent:
connection = Faraday.new(url: 'http://api.site.com/search')
url = connection.url_prefix.to_s
full_url = "#{ url }?a=b1&a=b2&a=b3&a=c2"
response = connection.get( full_url )
Which did not work - when I debug the response I see that the actual url sent to the API server is:
GET http://api.site.com/search?a[]=b1&a[]=b2&a[]=b3&a[]=c2
I have no way to change the API. Is there a way to keep working with Faraday and solve this in an elegant way? thanks.
I've been trying to figure out how to do this for a while now. I ended up digging through the Faraday code, and found exactly this use case in the test suite.
should yield
If you don't want upgrade to 0.9.x
I think the way you call Faraday is not correct. You need to define a connection first (without parameters), and then you call the HTTP method on that connection.
Something like this:
This should build you this request: