Reputation: 351
I am trying to intercept a POST request (generated by R httr package) via Fiddle but it seems to be not working. Any ideas?
Upvotes: 0
Views: 369
Reputation: 206486
Fiddler works by acting as an HTTP proxy in order to intercept all your web traffic. If you want to use it with RStudio, you just need to make RStudio use that proxy.
By default, the Fiddler proxy runs at Address: 127.0.0.1 Port: 8888.
Next, you can tell Rstudio about the proxy by adding this lines to your Renviron file.
http_proxy=http://127.0.0.1:8888/
Upvotes: 1