class Stormpath::Oauth::ChallengeFactorGrant

Public Instance Methods

form_data?() click to toggle source
   # File lib/stormpath-sdk/oauth/challenge_factor_grant.rb
20 def form_data?
21   true
22 end
form_properties() click to toggle source
   # File lib/stormpath-sdk/oauth/challenge_factor_grant.rb
 6 def form_properties
 7   {
 8     grant_type: grant_type,
 9     challenge: challenge,
10     code: code
11   }
12 end
set_options(request) click to toggle source
   # File lib/stormpath-sdk/oauth/challenge_factor_grant.rb
14 def set_options(request)
15   set_property :grant_type, request.grant_type
16   set_property :challenge, request.challenge
17   set_property :code, request.code
18 end