SignIn Error #419
-
Hello, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Couple things. Can you confirm...
Assuming both of these things are okay, you can also manually attempt to verify authentication by using the OAuth connection commands from the connector which I've ever so slightly re-arranged here for usability: #define
$AzureTenantID = ""
$AzureClientID = ""
$ewsUsername = ""
$ewsDomain = ""
#request an access token from Azure
$ReqTokenBody = @{
Grant_Type = "Password"
client_Id = $AzureClientID
Username = $ewsUsername + "@" + $ewsDomain
Password = $ewspassword
Scope = "https://outlook.office.com/EWS.AccessAsUser.All"
}
#get an access token
Invoke-RestMethod -Uri "https://login.microsoftonline.com/$AzureTenantID/oauth2/v2.0/token" -Method "POST" -Body $ReqTokenBody
|
Beta Was this translation helpful? Give feedback.
-
Hello Adam, |
Beta Was this translation helpful? Give feedback.
Hello Adam,
thank you for your reply.
I figured it out - the problem was/is the AD/ADFS infrastrukture. I use now an Azure AD Cloud User as Workflow User.
Now it works.