Why ocurrs the error while publishing, unable to load the service index for source nuget.telerik.com

2 Answers 1892 Views
Form
JeffSM
Top achievements
Rank 2
Iron
Veteran
Iron
JeffSM asked on 21 Oct 2023, 12:35 AM

I experienced this message while trying to publish:

 

Unable to load the service index for source https://nuget.telerik.com/v3/index.json.

Response status code does not indicate success: 401 (Unauthorized).

 

2 Answers, 1 is accepted

Sort by
0
Accepted
Dess | Tech Support Engineer, Principal
Telerik team
answered on 23 Oct 2023, 12:31 PM

Hi, Jefferson,

I am glad that the problem you were facing is now resolved.

I am not sure what is the complete scenario you have, but you can also have a look at the NuGet key option:

https://docs.telerik.com/devtools/winforms/visual-studio-integration/install-nuget-keys 

Should you have further questions please let me know.

Regards,
Dess | Tech Support Engineer, Principal
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

0
JeffSM
Top achievements
Rank 2
Iron
Veteran
Iron
answered on 21 Oct 2023, 12:38 AM

I found an old username and password on the NuGet.config at the root of the deployable project:


<?xml version="1.0" encoding="utf-8"?>
<configuration>
	<packageSources>
		<clear/>
		<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
		<add key="MyTelerikFeed" value="https://nuget.telerik.com/v3/index.json" protocolVersion="3"/>
	</packageSources>
	<packageSourceCredentials>
		<MyTelerikFeed>
			<add key="Username" value="[MY_USER_NAME]" />
			<add key="ClearTextPassword" value="[MY_PASSWORD]" />
		</MyTelerikFeed>
	</packageSourceCredentials>
</configuration>
 

 

I updated it, and it's working just fine.

 

#jefferson2020

Tags
Form
Asked by
JeffSM
Top achievements
Rank 2
Iron
Veteran
Iron
Answers by
Dess | Tech Support Engineer, Principal
Telerik team
JeffSM
Top achievements
Rank 2
Iron
Veteran
Iron
Share this question
or