Nuget package push 403 error on visual studio

北战南征 提交于 2020-01-04 04:33:11

问题


I have created a visual studio class library. I want to send this to Nuget as a package. I used Visual studio package manager console. The commans are like following:

  • nuget spac hellonuget
  • nuget pack hellonuget.nuspec
  • nuget push hellonuget.1.0.0.nupkg -ApiKey *

this returned an error: nuget : Failed to process request. 'The specified API key is invalid or does not have permission to access the specified package.'. At line:1 char:1 + nuget push hellonuget.1.0.0.nupkg + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (Failed to proce...ied package.'. :String) [], RemoteException + FullyQualifiedErrorId : NativeCommandError
The remote server returned an error: (403) Forbidden

I tried second way. I tried these commands from windows CMD window. I created nuget package of HelloNuget.dll.

  • D:\App\HelloNuget> nuget spac hellonuget.dll
  • D:\App\HelloNuget> nuget pack hellonuget.nuspec
  • D:\App\HelloNuget> nuget push hellonuget.1.0.0.nupkg -ApiKey *

    Succesfully published the pack.

What is the problem about visual studio package manager?


回答1:


I had the exact same problem and it was because i was using a name for the package that exists already . Once i changed the name of of the package to something unique it published perfectly.



来源:https://stackoverflow.com/questions/21514453/nuget-package-push-403-error-on-visual-studio

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!