Register created app as public client (fix connect AADSTS7000218) #1

Merged
kawa merged 5 commits from fix/auto-elevate-ownership into main 2026-06-02 14:43:33 +02:00
Showing only changes of commit 1c36ea89d0 - Show all commits
+23 -4
View File
@@ -84,10 +84,29 @@ public static class ExecuteQueryRetryHelper
return new InvalidOperationException(enriched, ex);
}
private static bool IsAccessDenied(Exception ex) =>
ex is ServerUnauthorizedAccessException ||
(ex is ServerException se &&
string.Equals(se.ServerErrorTypeName, "System.UnauthorizedAccessException", StringComparison.Ordinal));
// Access-denied reaches us in two shapes: a typed CSOM ServerException
// (ServerErrorTypeName = System.UnauthorizedAccessException), and — notably on
// Microsoft 365 Group / Teams-connected sites — a bare HTTP (403) FORBIDDEN
// WebException carrying "Access is denied ... 0x80070005 (E_ACCESSDENIED)".
// Both are ownership issues elevation can fix, so classify either as access-denied.
private static bool IsAccessDenied(Exception ex)
{
for (Exception? cur = ex; cur is not null; cur = cur.InnerException)
{
if (cur is ServerUnauthorizedAccessException)
return true;
if (cur is ServerException se &&
string.Equals(se.ServerErrorTypeName, "System.UnauthorizedAccessException", StringComparison.Ordinal))
return true;
if (cur is WebException we && we.Response is HttpWebResponse resp &&
resp.StatusCode == HttpStatusCode.Forbidden)
return true;
if (cur.Message.Contains("0x80070005", StringComparison.OrdinalIgnoreCase) ||
cur.Message.Contains("E_ACCESSDENIED", StringComparison.OrdinalIgnoreCase))
return true;
}
return false;
}
internal static bool IsThrottleException(Exception ex)
{