Sha256: 4b5e1e023a274493788e078e59c0b06128029dce401a20397fe27ed97380996b
Contents?: true
Size: 1.14 KB
Versions: 1
Compression:
Stored size: 1.14 KB
Contents
module Rack module OAuth2 module Server class Authorization class Token < Abstract::Handler def call(env) @request = Request.new(env) @response = Response.new(request) super end class Request < Authorization::Request def initialize(env) super @response_type = 'token' end end class Response < Authorization::Response attr_accessor :access_token, :expires_in, :scope def finish if approved? fragment = Array(redirect_uri.fragment) fragment << "access_token=#{URI.encode access_token}" fragment << "expires_in=#{URI.encode expires_in.to_s}" if expires_in fragment << "scope=#{URI.encode Array(scope).join(' ')}" if scope query_params << "state=#{URI.encode state}" if state redirect_uri.fragment = fragment.join('&') redirect redirect_uri.to_s end super end end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rack-oauth2-0.0.0 | lib/rack/oauth2/server/authorization/token.rb |