This post was most recently updated on January 17th, 2023.
4 min read.This article explains how to get rid of sudden and unexplainable 401 Access Denied errors when trying to authenticate against a fairly fresh Microsoft 365 / SharePoint Online tenant. This issue seems to be caused by a long-ish project to finally retire ACS ā Azure Access Control service) on SharePoint (itās retired everywhere else already!)
Note: This might still be an updating story, as the situation with ACS is definitelyā¦ Developing. Yeah, letās call it that. Itās a developing situation.
Problem
In the beginning of September (2020), a lot of threads, chats and tickets started popping up about apps and scripts suddenly failing to authenticate against SharePoint Online. It seemed somewhat widespread and just worsening.
One way to reproduce this issue is to use app-only authentication in OfficeDevPnPās AuthenticationManager:
var authman = new OfficeDevPnP.Core.AuthenticationManager();
using (Microsoft.SharePoint.Client.ClientContext ctx = authman .GetAppOnlyAuthenticatedContext(appUrl, clientId, clientSecret))
{
Web web = ctx.Web;
context.Load(web, w => w.Id, w => w.Title);
context.ExecuteQueryRetry();
}
The very low-key and non-descriptive error was simply:
"The remote server returned an error: (401) Unauthorized."
Sometimes with an additional insult to injury:
{"error":"invalid_request","error_description":"Token type is not allowed."}
The weirdest part? The same code or script might work just fine for other tenants. The only difference should be the age of the tenant youāre authenticating against ā it should be provisioned during or after August 2020.
Reason
This has been a long time coming I suppose, but Microsoft is pushing users away from ACS and using Client Id & Client Secret -combo to authenticate against Microsoft 365. Some time during 2020, Microsoft added a new tenant-level property called āDisableCustomAppAuthenticationā to SharePoint Online. This property was first surfaced in the August 2020 release of SharePoint Online CSOM. This release is available as a NuGet package with version 16.1.20412.12000.
This property should be pretty useful for a gradual move away from ACS ā your organization can approach whatever deadline Microsoft sets for disabling ACS completely by āsoft-disablingā it first with this property, and seeing if something breaks. Furthermore, disabling ACS is definitely a security improvement, as leaking a client id and client secret mightāve lead to anyone being able to access the tenant from anyone with zero oversight and very bad governance in general.
However, this is soiled pretty badly by the weird rollout. Unfortunately, someone at Microsoft made the decision to set this property to be true by default, and itāll affect any tenants provisioned after sometime late August, 2020.
Thatāll break a lot of custom functionality like apps or PowerShell scripts that work on any older tenants.
And obviously, the whole security aspect is also completely destroyed by the fact that since youāll now have to use Azure AD, which doesnāt contain granular, site-level permissions for app authentication. At all. So any app registration either gets everything, or nothing.
With ACS, you could assign permissions on a per- site collection level.
So much for security improvements!
But at least good folks at Microsoft seem to be aware of the issues with this default setting:
Solution
Well, essentially, youāve got 2 options. Let me explain them below!
Time needed:Ā 15 minutes
How to fix ā401 Unauthorizedā when using app authentication on a SharePoint tenant that was provisioned after August 2020?
- Move away from the old, app-only authentication using Client Id and Client Secret
This would be the better way forward ā for an application authentication scenarios, youād need to register your app in Azure Active Directory, but in that case you canāt manage permissions granularly, at all.
- Enforce TLS 1.2
There are a few ways to do this ā you might be able to do something like this in the code:
const System.Net.SecurityProtocolType Tls12 = (System.Net.SecurityProtocolType)((System.Security.Authentication.SslProtocols)0x00000C00);
System.Net.ServicePointManager.SecurityProtocol = Tls12;
Or you might need to simply update to .NET Framework 4.7.2, if possible (and if youāre still on the Framework-train instead of theCoremainstream .NET one).
Alternatively, you might need to apply some interesting configuration tricks ā I explain them closer here:
How to force an outdated .NET project to use TLS 1.2? - Set the property DisableCustomAppAuthentication to false.
You can also enable custom app authentication by disabling the tenant property āDisableCustomAppAuthenticationā.
āDisable disableā => enable. Double negative and all that.
Youāll need to have at least SharePoint Administrator permissions to run this.
First of all, update your SharePoint Online PowerShell module to the latest version. After that, authenticate, and then run this below:Set-SPOTenant -DisableCustomAppAuthentication $false
Or alternatively, you can run this PnP commandlet:Set-PnPTenant -DisableCustomAppAuthentication $false
Either of these will enable you to still use the ACS for the time being. Remember to hatch a plan of some kind for the future when it wonāt be available anymore!
Oh ā the change wonāt be instant. It might take up to 24 hours to actually update on your tenant (thanks, timer job of some sort).
ā¦ aaand you should be done! Until it breaks again.
References
- Credit where credit is due:
- My colleague Jouni Pohjolainen brought this one to my attention (wish he had a blog, would make it easier to attribute stuff like this! š)
- Gautam, another one of my colleagues (is there a pattern here?) pointed out I was missing the (newly available) switch PnP commandlets have to enable ACS ā thanks!
- Other people having this issue:
- SharePoint App-Only Add-ins throwing 401 Unauthorized on newly created O365 tenants
- SharePoint Online authorization issue āToken type is not allowedā
- People enjoying the (well, partially) same issue on GitHub:
Also worthwhile to see this Twitter conversation by my colleague Vardhaman:
So interesting new development for SharePoint App-Only permissions. The Tenant.DisableCustomAppAuthentication property introduced in latest version of CSOM can be used to disable granting permissions through appregnew.aspx/appinv.aspx https://t.co/Rog1ZhhmUT
ā Vardhaman Deshpande (@vrdmn) September 21, 2020
- How to close the Sidebar in Microsoft Edge - December 17, 2024
- How to stop Surface Headphones from autoplaying audio when you place them on the desk? - December 10, 2024
- āPhone Linkā permanently disabled and Windows claiming āSome of these settings are managed by your organizationā? (Probably) an easy fix! - December 3, 2024