Basic HTTP Authentication
Last updated
Was this helpful?
Last updated
Was this helpful?
The simplest way to interact with Aidbox API from your application is to use . It requires the client to provide credentials in the request header Authorization: Basic <credentials>
, where <credentials>
is the base64 encoded Client.id and Client.secret joined by a colon:
Basic Auth does not natively provide features such as session invalidation, and the credentials stay constant unless changed. As a result, it is typically used for internal services or quick proofs of concept where heightened security and user management systems are not critical concerns.
The easiest way to test Basic Auth is to run through the Aidbox Sandbox UI (Auth -> Sandbox -> Basic Auth).
TODO Tutorial: How to configure Basic Auth