1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 16:22:32 -04:00

Update README.md

[ci skip]
This commit is contained in:
Eduardo Gurgel 2014-01-05 17:40:55 -02:00
parent c25bd1c886
commit 12189c3312

View file

@ -1,35 +1,46 @@
# HTTParrot [![Build Status](https://travis-ci.org/edgurgel/httparrot.png?branch=master)](https://travis-ci.org/edgurgel/httparrot) # HTTParrot [![Build Status](https://travis-ci.org/edgurgel/httparrot.png?branch=master)](https://travis-ci.org/edgurgel/httparrot)
httpbin.org clone http://httpbin.org clone
``` ## Endpoints
ENDPOINTS
/ This page. * / This page.
/ip Returns Origin IP. * /ip Returns Origin IP.
/user-agent Returns user-agent. * /user-agent Returns user-agent.
/headers Returns header dict. * /headers Returns header dict.
/get Returns GET data. * /get Returns GET data.
/post Returns POST data. * /post Returns POST data.
/put Returns PUT data. * /put Returns PUT data.
/patch Returns PATCH data. * /patch Returns PATCH data.
/delete Returns DELETE data * /delete Returns DELETE data
/gzip Returns gzip-encoded data. * /gzip Returns gzip-encoded data.
/status/:code Returns given HTTP Status code. * /status/:code Returns given HTTP Status code.
/response-headers?key=val Returns given response headers. * /response-headers?key=val Returns given response headers.
/redirect/:n 302 Redirects n times. * /redirect/:n 302 Redirects n times.
/redirect-to?url=foo 302 Redirects to the foo URL. * /redirect-to?url=foo 302 Redirects to the foo URL.
/relative-redirect/:n 302 Relative redirects n times. * /relative-redirect/:n 302 Relative redirects n times.
/cookies Returns cookie data. * /cookies Returns cookie data.
/cookies/set?name=value Sets one or more simple cookies. * /cookies/set?name=value Sets one or more simple cookies.
/cookies/delete?name Deletes one or more simple cookies. * /cookies/delete?name Deletes one or more simple cookies.
/basic-auth/:user/:passwd Challenges HTTPBasic Auth. * /basic-auth/:user/:passwd Challenges HTTPBasic Auth.
/hidden-basic-auth/:user/:passwd 404'd BasicAuth. * /hidden-basic-auth/:user/:passwd 404'd BasicAuth.
/digest-auth/:qop/:user/:passwd Challenges HTTP Digest Auth. * /digest-auth/:qop/:user/:passwd Challenges HTTP Digest Auth.
/stream/:n Streams n100 lines. * /stream/:n Streams n100 lines.
/delay/:n Delays responding for n10 seconds. * /delay/:n Delays responding for n10 seconds.
/html Renders an HTML Page. * /html Renders an HTML Page.
/robots.txt Returns some robots.txt rules. * /robots.txt Returns some robots.txt rules.
/deny Denied by robots.txt file. * /deny Denied by robots.txt file.
/cache Returns 200 unless an If-Modified-Since header is provided, when it returns a 304 Not Modified. * /cache Returns 200 unless an If-Modified-Since header is provided, when it returns a 304 Not Modified.
```
## TODO
* / This page.
* /gzip Returns gzip-encoded data.
* /response-headers?key=val Returns given response headers.
* /redirect/:n 302 Redirects n times.
* /relative-redirect/:n 302 Relative redirects n times.
* /digest-auth/:qop/:user/:passwd Challenges HTTP Digest Auth.
* /delay/:n Delays responding for n10 seconds.
* /robots.txt Returns some robots.txt rules.
* /deny Denied by robots.txt file.
* /cache Returns 200 unless an If-Modified-Since header is provided, when it returns a 304 Not Modified.