Implicitgrant
The Implicit Grant is an OAuth 2.0 flow designed for client-side applications, such as single-page applications (SPAs) running in a web browser, or native mobile applications. In this flow, after a user authenticates with the authorization server, the authorization server redirects the user's browser back to the client application with an access token directly embedded in the URL fragment. This means the access token is delivered via the browser's address bar. The client application then extracts the access token from the URL fragment.
The Implicit Grant is considered less secure than other OAuth 2.0 flows, particularly the Authorization Code