class ActionDispatch::Request

def authorization

proxy alternatives.
Returns the authorization header regardless of whether it was specified directly or through one of the
def authorization
  @env['HTTP_AUTHORIZATION']   ||
  @env['X-HTTP_AUTHORIZATION'] ||
  @env['X_HTTP_AUTHORIZATION'] ||
  @env['REDIRECT_X_HTTP_AUTHORIZATION']
end