mollie / mollie-api-ruby

Mollie API client for Ruby
http://www.mollie.com
BSD 2-Clause "Simplified" License
81 stars 42 forks source link

keys not camelized for GET requests #62

Closed derekkraan closed 7 years ago

derekkraan commented 7 years ago

Request keys are camelized for POST requests, but not for GET requests. I'm not sure if there are certain query params that should not be camelized, but there certainly are other params that should (eg, profile_id).

See https://github.com/mollie/mollie-api-ruby/blob/master/lib/mollie/api/client.rb#L91 and https://github.com/mollie/mollie-api-ruby/blob/master/lib/mollie/api/client.rb#L99

benoist commented 7 years ago

Thank you for reporting. Get requests are now camelized in the master branch.

derekkraan commented 7 years ago

Thanks!