You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 17, 2023. It is now read-only.
I'm trying to capture the outgoing HelloSign API calls from my .NET Core 3.1 app, but nothing is showing up in Fiddler.
This is because in order for RestSharp calls to show up in .NET Core apps, you need to explicitly set the .Proxy, like so:
var client = new RestClient("https://someapi.com");
client.Proxy = new WebProxy("127.0.0.1", 8888); // IP, Port.
Can i suggest we update the Client constructor to allow this (take in an optional WebProxy parameter)? As right now, it's basically impossible to debug this lib with Fiddler, making it difficult to understand what's going on under the hood and talking with HelloSign support.
I have already tested and confirmed this change works, by building the source from this repository and making the above change, so I'm happy to submit a PR for this, just let me know.
Thanks
The text was updated successfully, but these errors were encountered:
Hi there,
I'm trying to capture the outgoing HelloSign API calls from my .NET Core 3.1 app, but nothing is showing up in Fiddler.
This is because in order for RestSharp calls to show up in .NET Core apps, you need to explicitly set the
.Proxy
, like so:Can i suggest we update the
Client
constructor to allow this (take in an optionalWebProxy
parameter)? As right now, it's basically impossible to debug this lib with Fiddler, making it difficult to understand what's going on under the hood and talking with HelloSign support.I have already tested and confirmed this change works, by building the source from this repository and making the above change, so I'm happy to submit a PR for this, just let me know.
Thanks
The text was updated successfully, but these errors were encountered: