Hello, I work for a customer who does have a paid instance of cells-cloud, but am trying to familiarise myself with being able to support/fault find.
I have a docker image running locally on my machine “zen_lamarr” “aspose/cells-cloud:latest”, i can see it running, access the swagger documentation via
but if i try to do this via C# code using Aspose.Cells-Cloud I need to create a CellsApi object with a clientid and clientsecret, (which I don’t have), then it fails.
I don’t need full blown access, I just need to evaluate it and develop some basic diagnostics and familiarise myself with it.
(for the moment i’ll use postman I think).
code below
CellsApi api = new CellsApi("", "", "http://localhost:8090/", "v3.0");
var x = api.GetCellsCloudServiceStatus(new GetCellsCloudServiceStatusRequest());
error is
System.AggregateException: ‘One or more errors occurred. (Not Found)’
Can you please clarify if you are looking for a way to use the Aspose.Cells-Cloud nuget package without providing clientid and clientsecret, or if you need assistance with a specific error message you are encountering?
CellsApi api = new CellsApi("ClientId", "ClientSecret", "http://localhost:8091/");
var x = api.GetCellsCloudServiceStatus(new GetCellsCloudServiceStatusRequest());
and the call still fails (but works through swagger/ui etc…so I’m a bit confused.