Skip to main content

Authenticate with and call the Microsoft Graph

Author: Garry Trinder

Calling the Microsoft Graph can be done using the m365 request command.

m365 request --url https://graph.microsoft.com/v1.0/me

Another route would be to use shell-specific webrequest tooling. To do this, obtain a new access token for the Microsoft Graph and use it in an HTTP request.

$token = m365 util accesstoken get --resource https://graph.microsoft.com --new --output text
$me = Invoke-RestMethod -Uri https://graph.microsoft.com/v1.0/me -Headers @{"Authorization"="Bearer $token"}
$me
CTRL + M