I’ve been using my UiPath Automation Cloud Community instance as a personal lab for agents, CI/CD integrations, silly hobby projects etc.
Up until last week, I’ve been able to continously deploy my projects to my Orchestrator tenant, using a pipeline with the UiPath CLI integrated, connecting through an External Application and so on. Now all activities I try to perform through external applications are failing, my pipelines and UiPath Python SDK jobs fail with errors such as these:
UiPath Python SDK:
orchestrator_url="https://cloud.uipath.com"
orchestrator_url="${orchestrator_url%%/}"
base_url="${orchestrator_url}/hppcntv/Mikaels_RnD"
uipath auth \
--client-id "***" \
--client-secret "***" \
--base-url "${base_url}"
⠋ Authenticating with UiPath ...💡 Using client credentials authentication.
❌ Invalid client credentials or request parameters.
❌ Unexpected error during authentication: 1
UiPath CLI jobs:
UiPath.CommandLine.Core.IdentityHandlers.Exceptions.AccessTokenFetchException: Could not fetch access token. Please check your credentials.
at UiPath.CommandLine.Core.IdentityHandlers.Handlers.AccessTokenHandler.<>c__DisplayClass3_0.<<SendAsync>g__SendRequest|0>d.MoveNext() in C:\ao-ag-0b1b43c5-we\_work\1\s\UiPath.Extensions.CommandLine.Core\IdentityHandlers\Handlers\AccessTokenHandler.cs:line 44
--- End of stack trace from previous location ---
at UiPath.CommandLine.Core.IdentityHandlers.Handlers.AccessTokenHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) in C:\ao-ag-0b1b43c5-we\_work\1\s\UiPath.Extensions.CommandLine.Core\IdentityHandlers\Handlers\AccessTokenHandler.cs:line 26
at UiPath.CommandLine.Core.IdentityHandlers.Handlers.ExtractAccessTokenHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) in C:\ao-ag-0b1b43c5-we\_work\1\s\UiPath.Extensions.CommandLine.Core\IdentityHandlers\Handlers\ExtractAccessTokenHandler.cs:line 21
at UiPath.CommandLine.Core.Clients.Workarounds.ReleaseRequestsCompatibleWithOldOrchHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) in C:\ao-ag-0b1b43c5-we\_work\1\s\UiPath.Extensions.CommandLine.Core\Clients\Workarounds\ReleaseRequestsCompatibleWithOldOrchHandler.cs:line 25
at System.Net.Http.HttpClient.<SendAsync>g__Core|83_0(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationTokenSource cts, Boolean disposeCts, CancellationTokenSource pendingRequestsCts, CancellationToken originalCancellationToken)
at UiPath.Orchestrator.Web.ClientV3.FoldersClient.GetAsync(String api_version, String select, String expand, String filter, String orderby, Nullable`1 top, Nullable`1 skip, Nullable`1 count, CancellationToken cancellationToken)
at UiPath.CommandLine.Core.Clients.OrchestratorConnectionData.FetchDestinationMetadata() in C:\ao-ag-0b1b43c5-we\_work\1\s\UiPath.Extensions.CommandLine.Core\Clients\OrchestratorConnectionData.cs:line 89
at UiPath.CommandLine.Core.Clients.OrchestratorConnectionData.DestinationType() in C:\ao-ag-0b1b43c5-we\_work\1\s\UiPath.Extensions.CommandLine.Core\Clients\OrchestratorConnectionData.cs:line 54
at UiPath.CommandLine.Core.Services.Impl.DeployService.Run(DeployOptions options) in C:\ao-ag-0b1b43c5-we\_work\1\s\UiPath.Extensions.CommandLine.Core\Services\Impl\DeployService.cs:line 86
at UiPath.CommandLine.Core.Services.Impl.OptionsParser.<>c__DisplayClass12_0.<<WithTelemetry>b__0>d.MoveNext() in C:\ao-ag-0b1b43c5-we\_work\1\s\UiPath.Extensions.CommandLine.Core\Services\Impl\OptionsParser.cs:line 211
--- End of stack trace from previous location ---
at UiPath.CommandLine.Core.Services.Impl.OptionsParser.<>c__DisplayClass11_0.<<WithBusinessTraces>b__0>d.MoveNext() in C:\ao-ag-0b1b43c5-we\_work\1\s\UiPath.Extensions.CommandLine.Core\Services\Impl\OptionsParser.cs:line 194
--- End of stack trace from previous location ---
at UiPath.CommandLine.Core.Services.Impl.OptionsParser.<>c__DisplayClass10_0.<<WithTraceLogging>b__0>d.MoveNext() in C:\ao-ag-0b1b43c5-we\_work\1\s\UiPath.Extensions.CommandLine.Core\Services\Impl\OptionsParser.cs:line 183
--- End of stack trace from previous location ---
at UiPath.CommandLine.Core.Services.Impl.OptionsParser.RunOptions(String[] args, Func`3 notParsedFunc) in C:\ao-ag-0b1b43c5-we\_work\1\s\UiPath.Extensions.CommandLine.Core\Services\Impl\OptionsParser.cs:line 131
I have tried to wipe all of my external applications, followed with setting up a new one, to see if there is anything wrong with the credentials, and now I get this error from Automation Cloud:
"Quota reached, cannot create more objects
Session ID
f032a7fe-673e-454c-bae1-f7aafd14a0d6"
Has there been some limitations added to the Community license plan recently related to external applications?