You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+58-46Lines changed: 58 additions & 46 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# GroupDocs.Conversion Cloud Node.js SDK
2
2
3
-
Node.js module for communicating with the GroupDocs.Conversion Cloud API
3
+
This repository contains GroupDocs.Conversion Cloud SDK for Node.js source code. This SDK has been developed to help you get started with using our document conversion REST API, allowing to seamlessly convert your documents to any format you need. With this single API, you can convert back and forth between over 50 types of documents and images, including all Microsoft Office and OpenDocument file formats, PDF documents, HTML, CAD, raster images and many more.
4
4
5
5
## Installation
6
6
@@ -10,62 +10,74 @@ A package `groupdocs-conversion-cloud` is available at [npmjs.com](https://www.n
10
10
npm install groupdocs-conversion-cloud
11
11
```
12
12
13
-
## Getting Started
13
+
### Create an account
14
+
Creating an account is very simple. Go to Dashboard to create a free account.
15
+
We’re using Single Sign On across our websites, therefore, if you already have an account with our services, you can use it to also access the [Dashboard](https://dashboard.groupdocs.cloud).
14
16
15
-
Please follow the [installation](#installation) procedure and then run the following JavaScript code:
17
+
### Create an API client app
18
+
Before you can make any requests to GroupDocs Cloud API you need to get a Client Id and a Client Secret. This will be used to invoke GroupDocs Cloud API. You can get it by creating a new [Application](https://dashboard.groupdocs.cloud/applications).
19
+
20
+
## Convert document
16
21
17
22
```js
18
-
// load the module
19
-
var GroupDocs =require('groupdocs-conversion-cloud');
20
-
21
-
// get your appSid and appKey at https://dashboard.groupdocs.cloud (free registration is required).
22
-
var appSid ="XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX";
23
-
var appKey ="XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
24
-
25
-
// construct Api
26
-
var api =GroupDocs.InfoApi.fromKeys(appSid, appKey);
27
-
var request =newGroupDocs.GetSupportedConversionTypesRequest();
0 commit comments