Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Auth Type

Configuration Options

Basic Auth

Basic Authentication (often referred to as “Basic Auth”) is a simple authentication scheme used in API connections. It involves sending the user’s credentials (typically a username and password) as part of the HTTP request. The credentials are encoded using Base64, and then included in the Authorization header of the request.

image-20240812-173005.png

Bearer Auth

Bearer Authentication (often referred to as “Bearer Token Authentication”) is a security mechanism for authenticating requests to an API or web service using an API Key or token. The token is included in the HTTP request header with a “bearer” prefix, allowing the server to verify the identity and permissions of the requester.

image-20240812-173212.png

OAuth 2.0

OAuth 2.0 is a widely used authorization framework that supports system-to-system (client credentials) authentication. When it comes to system clients (also known as machine-to-machine or service-to-service communication), OAuth 2.0 provides a specific grant type known as the Client Credentials Grant.

image-20240812-173629.png

  • No labels