I'm using RestSharp 108.0.1 in my visual studio project to send http request. In my request I need to send some parameter with values like 'Ze4mdL8ed%2BXinfpW7vg2qRkX9EyQaicauJEF94TZpJEwajJ8KqXleQ%3D%3D'. When I'm sending the same request through Postman (V 9.31.6), I'm getting proper result, but in visual studio it says unauthorized. I'm assuming there is some automatic encoding taking place in the visual studio which is changing the value of the parameter and thus the server is unable to authenticate with the new encoded value which is not happening in Postman and hence I'm getting proper response. I have very limited knowledge on encoding. I don't know what encoding Postman uses to send the request. Can someone help me to resolve this in visual studio with a function which will take care of the all the encoding and send similar encoded request that Postman does.
Thanks in advance.