jsonrpc-client
jsonrpc-client copied to clipboard
Simple JSON-RPC 2.0 client implementation
when running this code, I have an error: ``` conn = Faraday.new { |c| c.adapter Faraday.default_adapter c.ssl.verify = false # This is a baaaad idea! c.basic_auth('username', 'password') } client =...
We should have support for named parameters when making JSON RPC calls, this patch makes it possible to do just that with minimal modifications. When the user asks for `client.foo(1)`...
Batch requests now have send the correct meta data of the field JSON_RPC_VERSION and thus don't cause the batch request to crash on sensetive servers. Apparently the to_h and to_json...