0

I am creating a minimal API using .NET 6. This API calls another API, and I would like to capture that last call in Fiddler (or Postman).

In old ASP.NET we did like this in the web.config:

<system.net>
    <defaultProxy>
      <proxy bypassonlocal="False" usesystemdefault="True" proxyaddress="http://127.0.0.1:8888" />
    </defaultProxy>
  </system.net>

How do you do that in .NET 6?

Guru Stron
  • 102,774
  • 10
  • 95
  • 132
Axel Andersen
  • 330
  • 4
  • 14
  • Docs suggest [next approach](https://docs.telerik.com/fiddler/configure-fiddler/tasks/configuredotnetapp#configure-net-core-applications), also check [this](https://stackoverflow.com/q/51220722/2501279) question. – Guru Stron Sep 07 '22 at 12:02

0 Answers0