Lines Matching refs:authorization
13 ## Authentication and authorization
15 It is important to understand the basics of how API authentication and authorization are handled. A…
30 …s tokens**: When a user grants your application access, the OAuth 2.0 authorization server provide…
162 # scope. It assists with OAuth 2.0 steps to get user authorization and
184 # When you redirect to the authorization server below, it redirects back
207 # with a response that redirects the browser to the authorization server.
220 # the authorization server
224 """Handles the redirection back from the authorization server."""
229 # Before we redirected to the authorization server, we set a cookie to save
238 # We take the code provided by the authorization server and pass it to the
239 # flow.step2_exchange() function. This function contacts the authorization
258 # We use the flow object to get an authorization server URL that we should
265 # Redirect back to redirect_uri with an authorization code.
269 # Redirect back to redirect_uri with an authorization code.
390 …ion is used to redirect the user to the authorization server. Once the user has granted access, th…
402 … this local server, the target user is redirected to the authorization server. The authorization s…
403 7. The authorization server redirects the browser back to the local server.