Which auth to use?ΒΆ

Piccolo API provides easy-to-use middleware and endpoints for implementing authentication in your ASGI applications.

To learn more about how ASGI works, see the Introduction to ASGI article on the Piccolo blog. FastAPI and Starlette are examples of ASGI frameworks.

For most web apps, we recommend using Session Auth. It is robust, and well understood. Piccolo API has a very complete implementation with endpoints for logging in, logging out, changing password, and more.

Token Auth is useful when authenticating mobile apps, or machine to machine communication.

JWT Auth has emerged in recent years as an alternative to session auth. Rather than storing a session in a database and using cookies, it uses signed tokens instead. If you application requires JWT, then we have basic support for it, but we recommend Session Auth for most applications.