Simple go program for inspecting http requests.
Start service:
go run catchinspect.go
Send request to http://localhost:10101
The most recent request made to the catch service can be seen at http://localhost:10102
curl -X POST --url localhost:10101/?url1=hello -d "body1=world"Inspect (http://localhost:10102)
Form Values: url.Values{"url1":[]string{"hello"}, "body1":[]string{"world"}}
Remote Address: 127.0.0.1:53814
POST /?url1=hello HTTP/1.1
Host: localhost:10101
Accept: */*
Content-Length: 11
Content-Type: application/x-www-form-urlencoded
User-Agent: curl/7.54.0
body1=world