Hi,
I am evaluating the cloud version. We have been long time users of the on-premises version (C# and Java version). We are using the NodeJS SDK for cloud.
I am attempting to add a new worksheet to a file. Below is an excerpt from the code.
const req = new CellsWorksheets_PutAddNewWorksheetRequest();
req.name = ‘Book1.xlsx’;
req.sheetName = ‘Sheet11’;
req.position = 1;
req.sheettype = ‘’;
req.folder = ‘’;
req.storage = ‘test_stage’;
The ‘test_stage’ is an AWS S3 bucket. I can see the files in the bucket in the My Dashboard > My files. ‘test_stage’ is the storage name set in the ‘Storage Name’ field.
However when I run a test application it is updating a workbook located in the ‘Aspose for Cloud Default Storage 0’ storage area.
How do I use the S3 bucket or are there any known issues with this?
Regards,
James