class Rack::OAuth2::Server::UnauthorizedClientError

The authenticated client is not authorized to use the access grant type provided.

Public Class Methods

new() click to toggle source
Calls superclass method Rack::OAuth2::Server::OAuthError::new
# File lib/rack/oauth2/server/errors.rb, line 83
def initialize
  super :unauthorized_client, "You are not allowed to access this resource."
end