Lernen Aspose.Cells Clou
Willkommen bei Learn Aspose.Cells Cloud
Diese Site soll Entwicklern helfen, die die Aspose.Cells Cloud-API-Entwicklung framework zum Erstellen von Anwendungen verwenden möchten.
Was sind Aspose.Cells Cloud-APIs?
Ein REST-basierter Dienst zum programmgesteuerten Erstellen, Bearbeiten, Konvertieren und Analysieren von Tabellenkalkulationen in der Cloud. Verarbeiten Sie XLS-, XLSX- und CSV-Dateien via mit skalierbaren APIs ohne Microsoft Excel Abhängigkeiten.
Wer sollte Aspose.Cells Cloud-APIs verwenden?
Entwickler, die Lösungen zur Tabellenkalkulationsautomatisierung erstellen – vom Anfänger bis zum Unternehmensteam. Erstellen, bearbeiten, konvertieren und analysieren Sie XLSX/CSV-Dateien via REST-APIs ohne Excel-Installationen.
So verwenden Sie Aspose.Cells Cloud API in zwei Schritten
Von Null auf Automatisierung in 5 Minuten
Schritt 1:Holen Sie sich die Anmeldeinformationen für API
- Kostenlos registrieren
- Anwendung erstellen → Kopie
Client ID
&Client Secret
Schritt 2:Führen Sie Ihren ersten Anruf unter API durch
# Get access token via cURL
curl -X POST "https://api.aspose.cloud/connect/token" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "grant_type=client_credentials&client_id=YOUR_CLIENT_ID&client_secret=YOUR_CLIENT_SECRET"
# Convert XLSX to PDF via cURL
curl -v "https://api.aspose.cloud/v4.0/cells/convert/spreadsheet?format=PDF" \
-X PUT \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: multipart/form-data" \
-F "File=@input.xlsx"
Führen Sie die Tabelle API mit SDK aus
# Python SDK example
from asposecellscloud.apis.cells_api import CellsApi
from asposecellscloud.models import *
from asposecellscloud.requests import *
CellsCloudClientId ='....' # get from https://dashboard.aspose.cloud/#/applications
CellsCloudClientSecret='....' # get from https://dashboard.aspose.cloud/#/applications
instance = CellsApi(CellsCloudClientId,CellsCloudClientSecret)
response = instance.convert_spreadsheet(ConvertSpreadsheetRequest( 'EmployeeSalesSummary.xlsx', 'pdf') , local_outpath = "EmployeeSalesSummary.pdf")
Warum sollten Sie Aspose.Cells Cloud-APIs verwenden?
Die Enterprise-Grade Excel Engine für Cloud-Dienste
Aspose.Cells Cloud ist eine leistungsstarke Excel-Engine für Cloud-Dienste. Sie bietet zahlreiche Funktionen zum Erstellen, Bearbeiten, Konvertieren und Analysieren von Tabellenkalkulationen.
Mehrsprachige SDK-Unterstützung
- Vollständige Abdeckung: .NET/Java/Python/Node.js/PHP/Perl
- Neue Sprachen: Go/Ruby
Low Code: Schnelle Entwicklung mit minimalem Programmieraufwand
CellsApi cellsApi = new CellsApi(Environment.GetEnvironmentVariable("CellsCloudClientId"), Environment.GetEnvironmentVariable("CellsCloudClientSecret"));
cellsApi.ConvertSpreadsheet(new ConvertSpreadsheetRequest { Spreadsheet = "EmployeeSalesSummary.xlsx", format = "pdf" }, "EmployeeSalesSummary.pdf");