class HTTParty::Request

def clear_body

may be left behind from the initiating request
if we redirect, and the resulting verb is GET then we will clear the body that
Some Web Application Firewalls reject incoming GET requests that have a body
def clear_body
  options[:body] = nil
  @raw_request.body = nil
end