aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAnderson Mesquita <andersonvom@gmail.com>2018-06-04 12:03:27 +0200
committerAnderson Mesquita <andersonvom@gmail.com>2018-06-16 09:16:38 +0200
commitba02a0b8b9a068697b39b0f6c7ac36a2a479e0bc (patch)
tree5245bbd4b9002360ff88d7d26b850b448aec1be9 /docs
parent4fdc3d9e157965af6cf6220e0b7b5b7e5dc179bd (diff)
downloadmitmproxy-ba02a0b8b9a068697b39b0f6c7ac36a2a479e0bc.tar.gz
mitmproxy-ba02a0b8b9a068697b39b0f6c7ac36a2a479e0bc.tar.bz2
mitmproxy-ba02a0b8b9a068697b39b0f6c7ac36a2a479e0bc.zip
Add example to intercept/change specific requests
This example captures requests to a specific URL and returns an arbitrary response instead. It's common enough that is useful to have in the docs. It also adds links to the Request and Response classes to help developers writing scripts.
Diffstat (limited to 'docs')
-rw-r--r--docs/src/content/addons-scripting.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/src/content/addons-scripting.md b/docs/src/content/addons-scripting.md
index f9973b9e..4e9916ca 100644
--- a/docs/src/content/addons-scripting.md
+++ b/docs/src/content/addons-scripting.md
@@ -15,3 +15,18 @@ that adds a header to every request.
{{< example src="examples/addons/scripting-headers.py" lang="py" >}}
+
+
+Here's another example that intercepts requests to a particular URL and sends
+an arbitrary response instead:
+
+{{< example src="examples/simple/send_reply_from_proxy.py" lang="py" >}}
+
+
+You can look at the [http][] module, or the [Request][], and
+[Response][] classes for other attributes that you can use when
+scripting.
+
+[http][]: https://github.com/mitmproxy/mitmproxy/blob/master/mitmproxy/http.py
+[Request]: https://github.com/mitmproxy/mitmproxy/blob/master/mitmproxy/net/http/request.py
+[Response]: https://github.com/mitmproxy/mitmproxy/blob/master/mitmproxy/net/http/response.py