Getting parsed Request Bin bodies
Published - 2015-11-11 | 2min
TL;DR
1
curl -s 'http://requestb.in/api/v1/bins/YOUR_BIN_ID/requests' | jq '.[] | .body' | node -e 'var counter=0;require("readline").createInterface({input: process.stdin}).on("line", function (line) { require("fs").writeFileSync((++counter).toString() + ".json", JSON.parse(line));});'
You should be using RequestBin !!1
RequestBin is a free service offered by RunScope , where you can register a temporary web endpoint, that’ll record anything sent to it.
It saves you the effort of setting up a ngrok and a local endpoint.
I was using it to see the results of a 3rd party integration I was working on.
As RequestBin only lives for 48 hours, I wanted to get all the request body made to the bin, which in my case were POST
requests with a JSON body.
Luckily, RequestBin has a an API:
http://requestb.in/api/v1/bins/YOUR_CREATED_BIN_ID
NOTE : ‘If you created a private bin, you’ll need to add the session cookie in your curl
request:
1
curl -s 'http://requestb.in/api/v1/bins/YOUR_BIN_ID/requests' -H 'Cookie: session=BLAAAAAAAAAAAAAAAAAAAAAAAAAAA'
And BOOM:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"remote_addr" : "IP.00.0.000" ,
"method" : "POST" ,
"raw" : "{\n \"way_longer_raw_json_body_that_I_will_not_bore_you_with\": true\n}" ,
"id" : "1zzzzz" ,
"headers" : {
"X-Request-Id" : "b0067d65-73d4-4b21-afc9-c8129ed5bf2f" ,
"Connect-Time" : "1" ,
"Accept-Encoding" : "gzip,deflate" ,
"Host" : "requestb.in" ,
"User-Agent" : "Apache-HttpClient/4.3.6 (java 1.5)" ,
"Total-Route-Time" : "0" ,
"Connection" : "close" ,
"Content-Type" : "application/javascript; charset=UTF-8" ,
"Via" : "1.1 vegur" ,
"Content-Length" : "2300" ,
},
"form_data" : {},
"content_length" : 2300 ,
"query_string" : {
"ZOMG" : [
"TOTALLIZ"
]
},
"path" : "/YOUR_BIN_ID" ,
"content_type" : "application/javascript; charset=UTF-8" ,
"body" : "{\n \"way_longer_raw_json_body_that_I_will_not_bore_you_with\": true\n}" ,
"time" : 1447243787.943264
}
Yaay we got a lot of raw strings!
Ok awesome, now I had loads of info, but all I was interested of was the JSON body.
jq to the rescue
jq is sed|grep|awk
for JSON.
A simple pipe with a selector filtered the request
1
curl -s 'http://requestb.in/api/v1/bins/YOUR_BIN_ID/requests' | jq '.[] | .body'
BADABIM BADABOOM, SO MUCH DOGE, SO MUCH RAW JSON
But goosh, those are still raw strings, would love to parse them.
Let’s pipe them through node
!
NOTE : needs node
v0.12 and up..
1
2
3
4
5
6
7
8
var counter = 0 ;
require ( "readline" ). createInterface (
{
input : process . stdin
})
. on ( "line" , function ( line ) {
require ( "fs" ). writeFileSync (( ++ counter ). toString () + ".json" , JSON . parse ( line ));
});
To summarize
1
curl -s 'http://requestb.in/api/v1/bins/YOUR_BIN_ID/requests' | jq '.[] | .body' | node -e 'var counter=0;require("readline").createInterface({input: process.stdin}).on("line", function (line) { require("fs").writeFileSync((++counter).toString() + ".json", JSON.parse(line));});'
And you’ll have N.json
files with the parsed bodies.