Returns true if the HTTP response code was in the 300-399 range.
Note: if the :follow-redirects option was true (the default),
redirects will be followed automatically and a the agent will never
return a 3xx response code.
(defn redirect? "Returns true if the HTTP response code was in the 300-399 range. Note: if the :follow-redirects option was true (the default), redirects will be followed automatically and a the agent will never return a 3xx response code." [http-agnt] (status-in-range? 3 http-agnt))
Comments top
No comments for redirect?. Log in to add a comment.