I'm receiving the following error while hitting the list existing synchronization jobs endpoint with a servicePrincipals ID for one of my enterprise applications.
{
"error" :
{
"code" : "UnknownError",
"innerError" :
{
"client-request-id" : "{id}",
"date" : "2021-01-22T14:33:26",
"request-id" : "{id}"
},
"message" : ""
}
}
So far, I've verified the servicePrincipals ID is correct in a couple different ways. I was able to use this endpoint successfully to obtain that:
GET https://graph.microsoft.com/beta/servicePrincipals?$select=id,appId,displayName&$filter=startswith(displayName, 'dropbox')
Details of my request:
URL:
https://graph.microsoft.com/beta/servicePrincipals/{id}/synchronization/jobs/
Headers:
-X GET -H "Authorization: Bearer {token}"
Request body: (None)
Any insights into why I am getting an error?
question from:
https://stackoverflow.com/questions/65847951/unknownerror-when-attempting-to-list-existing-synchronization-jobs-for-a-given-s 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…