Skip to content

Instantly share code, notes, and snippets.

View mozziemozz's full-sized avatar
🏖️
Out of office

Martin Heusser mozziemozz

🏖️
Out of office
View GitHub Profile
$ClientSecret = ""
$ApplicationID = ""
$TenantID = ""
$graphtokenBody = @{
Grant_Type = "client_credentials"
Scope = "https://graph.microsoft.com/.default"
Client_Id = $ApplicationID
Client_Secret = $ClientSecret
}