class OAuth2::Strategy::Implicit
@see tools.ietf.org/html/draft-ietf-oauth-v2-26#section-4.2<br><br>The Implicit Strategy
def authorize_params(params = {})
-
params
(Hash
) -- additional query parameters
def authorize_params(params = {}) params.merge('response_type' => 'token', 'client_id' => @client.id) end
def authorize_url(params = {})
-
params
(Hash
) -- additional query parameters for the URL
def authorize_url(params = {}) @client.authorize_url(authorize_params.merge(params)) end
def get_token(*)
-
(NotImplementedError)
-
def get_token(*) fail(NotImplementedError, 'The token is accessed differently in this strategy') end