class Blitz::Curl::Error::Authorize

This exception is raised when you haven’t authorized a rush against your app

Attributes

checks[R]

The set of checks performed if the app was reachable

host[R]

The host in the URL

port[R]

The port (if specified) in the URL

scheme[R]

The scheme used in the rush (http or httpss)

uuid[R]

The unique ID to use a URL path in your app for authorization to succeed

Public Class Methods

new(json) click to toggle source
Calls superclass method
# File lib/blitz/curl/error.rb, line 25
def initialize json
    @scheme = json['scheme']
    @host   = json['host']
    @port   = json['port']
    @uuid   = json['uuid']
    @checks = json['checks']
    super
end