Skip to content

Commit 1c1498d

Browse files
Updated README
1 parent f51801c commit 1c1498d

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,12 @@ First generate the JAR by executing `mvn package`, then manually install the fol
101101
## Convert DOCX to PDF in the Cloud
102102

103103
```java
104-
// Get application information from https://dashboard.groupdocs.cloud
105-
String MyAppKey = "";
106-
String MyAppSid = "";
104+
// Get Client Id and Client Secret from https://dashboard.groupdocs.cloud
105+
String MyClientId = "";
106+
String MyClientSecret = "";
107107

108-
Configuration configuration = new Configuration(MyAppSid, MyAppKey);
109-
110-
// Create API instance
108+
// Create instance of the API
109+
Configuration configuration = new Configuration(MyClientId, MyClientSecret);
111110
ConvertApi apiInstance = new ConvertApi(configuration);
112111

113112
// Prepare convert settings

0 commit comments

Comments
 (0)