Skip to content
thc202 edited this page Jan 29, 2020 · 3 revisions

ProxyListener

The ProxyListener class is one of the ExtensionHooks that allows you to view and change all requests and responses.

To use it you will need to create a class that implements it and then hook it in by overriding the Extension 'hook' method, eg:

	@Override
	public void hook(ExtensionHook extensionHook) {
	    extensionHook.addProxyListener(getMyProxyListener());
	}

See the ProxyListener source code for details of the methods it supports.

Clone this wiki locally