Advertisement
About80Ninjas

HTTP Responce

Jan 8th, 2016
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Switch($HTTPresponce) {
  2.     100{'Continue', 'Request received, please continue'}
  3.     101{'Switching Protocols','Switching to new protocol; obey Upgrade header'}
  4.     200{'OK', 'Request fulfilled, document follows'}
  5.     201{'Created', 'Document created, URL follows'}
  6.     202{'Accepted','Request accepted, processing continues off-line'}
  7.     203{'Non-Authoritative Information', 'Request fulfilled from cache'}
  8.     204{'No Content', 'Request fulfilled, nothing follows'}
  9.     205{'Reset Content', 'Clear input form for further input.'}
  10.     206{'Partial Content', 'Partial content follows.'}
  11.     300{'Multiple Choices','Object has several resources -- see URI list'}
  12.     301{'Moved Permanently', 'Object moved permanently -- see URI list'}
  13.     302{'Found', 'Object moved temporarily -- see URI list'}
  14.     303{'See Other', 'Object moved -- see Method and URL list'}
  15.     304{'Not Modified','Document has not changed since given time'}
  16.     305{'Use Proxy','You must use proxy specified in Location to access this resource.'}
  17.     307{'Temporary Redirect','Object moved temporarily -- see URI list'}
  18.     400{'Bad Request', 'Bad request syntax or unsupported method'}
  19.     401{'Unauthorized','No permission -- see authorization schemes'}
  20.     402{'Payment Required','No payment -- see charging schemes'}
  21.     403{'Forbidden','Request forbidden -- authorization will not help'}
  22.     404{'Not Found', 'Nothing matches the given URI'}
  23.     405{'Method Not Allowed','Specified method is invalid for this server.'}
  24.     406{'Not Acceptable', 'URI not available in preferred format.'}
  25.     407{'Proxy Authentication Required', 'You must authenticate with this proxy before proceeding.'}
  26.     408{'Request Timeout', 'Request timed out; try again later.'}
  27.     409{'Conflict', 'Request conflict.'}
  28.     410{'Gone','URI no longer exists and has been permanently removed.'}
  29.     411{'Length Required', 'Client must specify Content-Length.'}
  30.     412{'Precondition Failed', 'Precondition in headers is false.'}
  31.     413{'Request Entity Too Large', 'Entity is too large.'}
  32.     414{'Request-URI Too Long', 'URI is too long.'}
  33.     415{'Unsupported Media Type', 'Entity body in unsupported format.'}
  34.     416{'Requested Range Not Satisfiable','Cannot satisfy request range.'}
  35.     417{'Expectation Failed','Expect condition could not be satisfied.'}
  36.     500{'Internal Server Error', 'Server got itself in trouble'}
  37.     501{'Not Implemented','Server does not support this operation'}
  38.     502{'Bad Gateway', 'Invalid responses from another server/proxy.'}
  39.     503{'Service Unavailable','The server cannot process the request due to a high load'}
  40.     504{'Gateway Timeout','The gateway server did not receive a timely response'}
  41.     505{'HTTP Version Not Supported', 'Cannot fulfill request.'}
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement