Add-on components that enhance and customize the Visual Studio integrated development environment
Hi @sri kanth ,
The 429 – "Woah, that's a lot of requests" page means the Marketplace service is rate‑limiting your identity (usually shown as Request was blocked due to exceeding usage of resource 'Concurrency' in namespace 'VSID'). Clearing browser cache won't help, because the block is on the account/identity side, not in the browser.
A few things to check first:
- Stop any automation that publishes or signs in repeatedly. CI/CD pipelines (for example GitHub Actions triggered by pull requests or Dependabot) can run several
vsce publishjobs in parallel with the same publisher token and keep the block active. Add a concurrency lock or limit publishing to manual/release triggers. - Avoid frequent retries. Each retry can extend the throttle window.
- Try once from a clean browser profile and a different network, only to rule out a stuck session or proxy.
If it still fails after that, this needs the Visual Studio Marketplace team to look at your account, since publisher and account‑level blocks can't be inspected or cleared from here. You can reach them at VSMarketplace@microsoft.com or open an issue at https://github.com/microsoft/vsmarketplace/issues.
For background on how throttling works, see https://learn.microsoft.com/en-us/azure/devops/integrate/concepts/rate-limits?view=azure-devops
If you get a new error after trying the above, share it and I'll take another look.If you found my response helpful or informative, I would greatly appreciate it if you could follow this guidance or provide feedback.
Thank you.