Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Authentication with ClientSecret #132

Open
BeneLuz opened this issue Dec 15, 2023 · 0 comments
Open

Authentication with ClientSecret #132

BeneLuz opened this issue Dec 15, 2023 · 0 comments

Comments

@BeneLuz
Copy link

BeneLuz commented Dec 15, 2023

With this code, you can connect with a clientsecret and use the tools

$tokenBody = @{
tenantId = "$tenantId"
ClientId = $clientId
clientsecret = ($clientSecret |ConvertTo-SecureString -AsPlainText -Force)
}

$accessToken = Get-MsalToken @tokenBody

$Global:AccessToken = $accessToken
$Global:AccessTokenTenantID = $tenantId
$Global:AuthenticationHeader = $AuthenticationHeader = @{
"Content-Type" = "application/json"
"Authorization" = $accessToken.CreateAuthorizationHeader()
"ExpiresOn" = $accessToken.ExpiresOn.UTCDateTime

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant