Difference between revisions of "Authorization Code"

From MgmtWiki
Jump to: navigation, search
(Solutions)
(Solutions)
Line 11: Line 11:
 
Based on the protocol selection of OpenID Connect or OAuth, the full solution is described in the [[Identity Model]].
 
Based on the protocol selection of OpenID Connect or OAuth, the full solution is described in the [[Identity Model]].
  
This is the definition in RFC 6749 ''The OAuth 2.0 Authorization Framework''. In this case the ''authorization server'' is an end point in the [[Identifier or Attribute Provider''.
+
This is the definition in RFC 6749 ''The OAuth 2.0 Authorization Framework''. In this case the ''authorization server'' is an end point in the [[Identifier or Attribute Provider]].
  
 
   The authorization code is obtained by using an authorization server
 
   The authorization code is obtained by using an authorization server

Revision as of 14:05, 8 July 2018

Full Title or Meme

Information passed from an Identifier or Attribute Provider to a Relying Party to indicate that the user has consented to authorized access to User Information.

Context

The context is an internet flow of Authorization as consented by the User.

Problems

Provide access to User Information in order to enable the user to obtain the access desired to some internet Resource.

Solutions

Based on the protocol selection of OpenID Connect or OAuth, the full solution is described in the Identity Model.

This is the definition in RFC 6749 The OAuth 2.0 Authorization Framework. In this case the authorization server is an end point in the Identifier or Attribute Provider.

  The authorization code is obtained by using an authorization server
  as an intermediary between the client and resource owner.  Instead of
  requesting authorization directly from the resource owner, the client
  directs the resource owner to an authorization server (via its
  User Agent as defined in [RFC 2616]), which in turn directs the
  resource owner back to the client with the authorization code.

Other protocols, like SAML are also available.

References