Skip to content

Commit 9a02518

Browse files
committed
update readme
1 parent 883556f commit 9a02518

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ Enhance your .NET applications with the [Aspose.Cells Cloud](https://products.as
77
## Quick Start Guide
88

99
To get started with Aspose.Cells Cloud for .NET, follow these steps:
10-
11-
1. Create an account at [Aspose for Cloud](https://dashboard.aspose.cloud/#/apps) and obtain your CellsCloudClientId and CellsCloudClientSecret.
10+
1. Create an account at [Aspose for Cloud](https://dashboard.aspose.cloud/#/apps) and obtain your ”Client Id" and "Client Secret".
1211
2. execute `Install-Package Aspose.Cells-Cloud` from the Package Manager Console in Visual Studio to fetch & reference Aspose.Cells Cloud SDK assembly in your project.If you already have Aspose.Cells Cloud for .NET and want to upgrade it, please execute `Update-Package Aspose.Cells-Cloud` to get the latest version.
1312

1413
```csharp
@@ -22,8 +21,9 @@ To get started with Aspose.Cells Cloud for .NET, follow these steps:
2221
{
2322
public void ConvertSpreadsheetPDFExample()
2423
{
25-
//You need to set your CellsCloudClientId and CellsCloudClientSecret in the environment variables.
26-
CellsApi cellsApi = new CellsApi(Environment.GetEnvironmentVariable("CellsCloudTestClientId"), Environment.GetEnvironmentVariable("CellsCloudTestClientSecret"));
24+
string clientId = ""; //your client id;
25+
string clientSecret=""; //your client secret;
26+
CellsApi cellsApi = new CellsApi(clientId, clientSecret);
2727
cellsApi.ConvertSpreadsheet(new ConvertSpreadsheetRequest { Spreadsheet = "EmployeeSalesSummary.xlsx", format = "pdf" }, "EmployeeSalesSummary.pdf");
2828
}
2929
}

0 commit comments

Comments
 (0)