Using OAuth 2.0 Authorization framework This article describes, how third-party application access information from resource owners using OAuth2 framework. OA uth ??? Open-standard authorization framework it provides secure designated access to application. It never uses password, but authorization tokens are used to prove identity of service providers and consumers. OAuth act as valet key of car. Following figure shows the work flow of OAuth 2 framework. In OAuth 2.0 following roles are identified. Resource Owner Resource Server Client Authorization Server. Authorization grant types The way of getting access token is called as grant type. Following are the 4 main grant types. Authorization code grant type: this grant type used by native apps and web apps, here client has to be confidential. Implicit grant type: this is implemented for client-side scripting, here clients are public. Client credentials grant type: this t...
Comments
Post a Comment