New to Telerik UI for .NET MAUI? Start a free 30-day trial
Error 401 Unauthorized
Updated on Jun 17, 2025
| Author |
|---|
| Dobrinka Yordanova |
Description
I receive Error 401 Unauthorized when trying to connect the Telerik NuGet server. I verified my credentials and they are correct. I also have an active license for the product.
Cause
If you receive Error 401 Unauthorized but your credentials are correct and your license includes the requested product and version, the most probable cause are special characters in the password.
Solution
Escape the special character in your password, for example, an ampersand (&) or a section character (§).
To solve the issue, use either of the following methods:
- Change the password so that it doesn't include characters you need to escape.
- Escape the special characters before storing the credentials. For example,
my§uper&P@§§wordencodes tomy§uper&P@§§word.
Avoid using an online encoder utility for a password. Instead, use a PowerShell command:
Shell
Add-Type -AssemblyName System.Web
[System.Web.HttpUtility]::HtmlEncode('my§uper&P@§§word')
