--- description: Implicit Grant flow. Supported but not recommendted to use --- # How to configure Implicit Grant {% hint style="warning" %} Implicit flow is not recommended to use since there is a risk of leaking access token without any confirmation it was received by the client. More over, some servers prohibit this flow entirely. Aidbox supports Implicit Grant flow but we don't enjoy it very much. It is better to switch to [Authorization Code Grant with PKCE](authorization-code-grant.md) extension instead {% endhint %} Implicit Grant flow is an alternative for Authorization Code flow. This flow just receives `access_token` in query string fragment instead of obtaining secure`code`. It's indented for client-side apps use in order to access an API, typically as Web SPA applications. For more detailed information, read [OAuth 2.0 specification](https://tools.ietf.org/html/rfc6749#section-4.2). ### Easy way The easiest way to test Implicit Grant flow is to run through the [Aidbox Sandbox UI](#auth-sandbox) (_Auth -> Sandbox ->_ Implicit). ### Authorization Endpoint `GET` `[base]/auth/authorize` Obtaining access token #### Query Parameters | Name | Type | Description | | -------------- | ------ | ----------------------------------------------------------------------------- | | state | string | a value used by the client to maintain state between the request and callback | | scope | string | scope of the access request | | redirect\_uri | string | client redirect URI | | client\_id | string | client ID | | response\_type | string |
value MUST be set to
token