Skip to content

Instantly share code, notes, and snippets.

View mozziemozz's full-sized avatar
🏠
Working from home

Martin Heusser mozziemozz

🏠
Working from home
View GitHub Profile
$ClientSecret = ""
$ApplicationID = ""
$TenantID = ""
$graphtokenBody = @{
Grant_Type = "client_credentials"
Scope = "https://graph.microsoft.com/.default"
Client_Id = $ApplicationID
Client_Secret = $ClientSecret
}