February 2019
Intermediate to advanced
446 pages
10h 55m
English
Implicit grants are very similar to authorization code grants, except for the code grant step. If you remove the first step—the code grant step (where the client application receives the authorization token from the authorization server)—from the authorization code grant, the rest of the steps are the same. Let's check it out.
Enter the following URL and parameters in the browser and press Enter. Also, make sure to add basic authentication, with username as the client and password as the password, if asked:
http://localhost:9001/auth/oauth/authorize?response_type=token&redirect_uri=https://localhost:8765/&scope=apiAccess&state=553344&client_id=client
Here, we are calling the authorization endpoint with the following request ...
Read now
Unlock full access