Here's my relevant code...
Dim wclient2 = New WebClient()
wclient2.Headers.Add("Authorization", "Bearer " & accessToken)
Dim response As String = wclient2.DownloadString("https://graph.microsoft.com/v1.0/me")
I'm getting "400 Bad Request" error.
My accessToken
is valid. My application is registered and has User.Read.All application permissions.
Anybody see what I'm doing wrong?