Difference between revisions of "A Really Useful Service"
Jump to navigation
Jump to search
PeterHarding (talk | contribs) (Created page with "=Site= http://httpbin.org/ HTTP Request & Response Service hosted in HTTP, HTTPS & EU flavors by Runscope =Examples= <pre> wget http://httpbin.org/get?xxxx=1 { "args":...") |
PeterHarding (talk | contribs) |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 6: | Line 6: | ||
=Examples= | =Examples= | ||
wget http://httpbin.org/get?xxxx=1 | |||
Returns: | |||
<pre> | <pre> | ||
{ | { | ||
"args": { | "args": { | ||
| Line 28: | Line 30: | ||
[[ | [[Category:Internet]] | ||
[[Category: | [[Category:Web Development]] | ||
[[Category:Testing]] | [[Category:Testing]] | ||
Latest revision as of 10:09, 23 January 2016
Site
http://httpbin.org/
HTTP Request & Response Service hosted in HTTP, HTTPS & EU flavors by Runscope
Examples
wget http://httpbin.org/get?xxxx=1
Returns:
{
"args": {
"xxxx": "1"
},
"headers": {
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8",
"Accept-Encoding": "gzip, deflate, sdch",
"Accept-Language": "en-US,en;q=0.8",
"Host": "httpbin.org",
"Upgrade-Insecure-Requests": "1",
"User-Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36"
},
"origin": "203.3.69.3",
"url": "http://httpbin.org/get?xxxx=1"
}