Do not encode parameters in RestSharp
问题 I am using RestSharp to access a RubyOnRails API. As you might know, RoR likes when the parameters names are in the form model_name[property] . RestSharp, on the other hand, does not like it. Fiddler says I send this to the server : user%5Bemail%5D=user%40email.com&user%5Bpassword%5D=test It looks like R# encodes both the parameters and values when it sends the data (unlike Curl, which looks like it encodes selectively). While that's fine most of the time I guess, in this particular case, it