FAQ
Developer hub
Authentication
Authentication Auth2.0 - Implicit Auth

Authentication Auth2.0 - Implicit Auth


Designed for applications that run in a user's browser (e.g., single-page applications). The access token is returned directly without an intermediate authorization code.

implicit credentials.png

Use Cases:

  • Single-page applications (SPAs).

  • Applications with limited backend capabilities.

Security Considerations:

  • Access token is exposed in the URL fragment, making it susceptible to interception.

  • Not recommended for applications handling sensitive data.

  • Considered less secure, its use is being deprecated in favor of Authorization Code with PKCE.

Prev