问题
Just sending a simple POST request to https://httpbin.org/post.
Fiddler captures the request when I send it from Postman, but doesn't when I send it from Insomnia.
Is there some setting I need to enable either in Fiddler or Insomnia?
回答1:
By default, Fiddler changes the system proxy to point to the port it's listening onto, http://localhost:8888. Contrary, Insomnia doesn't use the system proxy, but could be manually configured to use a specified proxy:
- Choose Settings -> HTTP Proxy and set
http://localhost:8888
(or whatever Fiddler is using).
来源:https://stackoverflow.com/questions/59491085/fiddler-doesnt-capture-request-from-insomnia-but-does-capture-rquest-from-postm