FAQ
Developer hub
Authentication
Authentication - Basic Auth

Authentication - Basic Auth


Basic Authentication involves sending a username and password with each HTTP request. The credentials are typically base64-encoded and included in the Authorization header.

Basic Auth Demo
Basic Auth Demo

Click through a step-by-step, interactive demo walkthrough of Supademo, powered by Supademo.

https://app.supademo.com/embed/cm662h6yd06gvchn1i5lo91cf?embed_v=2

Use Cases:

  • Internal applications or services.

  • Quick testing or prototyping.

Security Considerations:

  • Credentials are sent with every request, increasing the risk of interception.

  • Base64 encoding is not encryption; credentials can be easily decoded.

  • Not recommended for production environments without HTTPS.

Screenshot 2025-05-14 at 5.52.37 PM.png

Prev