1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 08:12:31 -04:00
No description
Find a file
Eduardo Gurgel 01bf9f9738 Update README.md
[ci skip]
2014-02-01 18:37:55 -02:00
lib Add '/cookies/set/:name/:value' reusing the same handler 2014-01-31 22:06:41 -03:00
priv Update index.html 2014-01-28 12:13:19 -03:00
test Add '/cookies/set/:name/:value' reusing the same handler 2014-01-31 22:06:41 -03:00
.gitignore Initial commit 2013-12-27 18:47:21 -03:00
.travis.yml Do not start httparrot on tests 2014-01-26 12:32:54 -03:00
mix.exs Check if ssl is enabled before starting 2014-01-24 16:39:39 -03:00
mix.lock Initial commit 2013-12-27 18:47:21 -03:00
README.md Update README.md 2014-02-01 18:37:55 -02:00

HTTParrot Build Status

http://httpbin.org clone

Endpoints

  • / This page.
  • /ip Returns Origin IP.
  • /user-agent Returns user-agent.
  • /headers Returns header dict.
  • /get Returns GET data.
  • /post Returns POST data.
  • /put Returns PUT data.
  • /patch Returns PATCH data.
  • /delete Returns DELETE data
  • /gzip Returns gzip-encoded data.
  • /status/:code Returns given HTTP Status code.
  • /response-headers?key=val Returns given response headers.
  • /redirect/:n 301 Redirects n times.
  • /redirect-to?url=foo 301 Redirects to the foo URL.
  • /relative-redirect/:n 301 Relative redirects n times.
  • /cookies Returns cookie data.
  • /cookies/set?name=value Sets one or more simple cookies.
  • /cookies/set/name/value Sets one cookie .
  • /cookies/delete?name Deletes one or more simple cookies.
  • /basic-auth/:user/:passwd Challenges HTTPBasic Auth.
  • /hidden-basic-auth/:user/:passwd 404'd BasicAuth.
  • /digest-auth/:qop/:user/:passwd Challenges HTTP Digest Auth.
  • /stream/:n Streams n100 lines.
  • /delay/:n Delays responding for n10 seconds.
  • /html Renders an HTML Page.
  • /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.
  • /base64/:value Decodes base64url-encoded string
  • /websocket Echo message received through websocket

TODO

  • /gzip Returns gzip-encoded data.
  • /response-headers?key=val Returns given response headers.
  • /digest-auth/:qop/:user/:passwd Challenges HTTP Digest Auth.
  • /cache Returns 200 unless an If-Modified-Since header is provided, when it returns a 304 Not Modified.