Authentication over HTTPS
To interact with your database over HTTPS, the principal making the request
must authenticate by using the HTTP Authorization
request header.
Syntax
Authorization:
Bearer
AccessToken
Parameters
Name | Type | Required | Description |
---|---|---|---|
AccessToken | string | ✔️ | A Microsoft Entra access token for the service. |
Get an access token
There are many different methods to get a Microsoft Entra access token. To learn more, see user authentication and application authentication. There are many different methods to get a Microsoft Entra access token. To learn more, see user authentication and application authentication.
Get an access token for a user principal using the Azure CLI
The following steps return an access token for the user principal making the request. Make sure the user principal has access to the resource you plan to access. For more information, see role-based access control. The following steps return an access token for the user principal making the request. Make sure the user principal has access to the resource you plan to access. For more information, see role-based access control.
Sign in to the Azure CLI.
az login --output table
Find the row where the column
Default
istrue
. Confirm that the subscription in that row is the subscription for which you want to create your Microsoft Entra access token. To find subscription information, see get subscription and tenant IDs in the Azure portal. If you need to switch to a different subscription, run one of the following commands.Find the row where the column
Default
istrue
. Confirm that the subscription in that row is the subscription for which you want to create your Microsoft Entra access token. To find subscription information, see get subscription and tenant IDs in the Azure portal. If you need to switch to a different subscription, run one of the following commands.Run the following command to get the access token.
az account get-access-token \ --resource "https://api.kusto.windows.net" \ --query "accessToken"
Get an access token for a service principal using the Azure CLI
Microsoft Entra service principals represent applications or services that need access to resources, usually in non-interactive scenarios such as API calls. The following steps guide you through creating a service principal and getting a bearer token for this principal.
Sign in to the Azure CLI.
az login --output table
Find the row where the column
Default
istrue
. Confirm that the subscription in that row is the subscription under which you want to create the service principal. To find subscription information, see get subscription and tenant IDs in the Azure portal. If you need to switch to a different subscription, run one of the following commands.Find the row where the column
Default
istrue
. Confirm that the subscription in that row is the subscription under which you want to create the service principal. To find subscription information, see get subscription and tenant IDs in the Azure portal. If you need to switch to a different subscription, run one of the following commands.Create a service principal. This following command creates a Microsoft Entra service principal and returns the
appId
,displayName
,password
, andtenantId
for the service principal.Grant the application principal access to your database. For example, in the context of your database, use the following command to add the principal as a user.
To learn about the different roles and how to assign them, see security roles management. To learn about the different roles and how to assign them, see security roles management.
-F grant_type=client_credentials \ -F resource=https://api.kusto.windows.net
Related content
- Authentication overview
- Authentication overview
- To learn how to perform On-behalf-of (OBO) authentication or Single Page Application (SPA) authentication, see How to authenticate with Microsoft Authentication Library (MSAL).
- To learn how to perform On-behalf-of (OBO) authentication or Single Page Application (SPA) authentication, see How to authenticate with Microsoft Authentication Library (MSAL).
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.