We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28d20de commit 42381f1Copy full SHA for 42381f1
1 file changed
README.md
@@ -65,11 +65,13 @@ python setup.py install
65
```python
66
import groupdocs_conversion_cloud
67
68
-app_sid = "XXXX-XXXX-XXXX-XXXX"
69
-app_key = "XXXXXXXXXXXXXXXX"
+# Get Client Id and Client Secret from https://dashboard.groupdocs.cloud
+my_client_id = ""
70
+my_client_secret = ""
71
-# Create necessary API instances
72
-apiInstance = groupdocs_conversion_cloud.ConvertApi.from_keys(Common.app_sid, Common.app_key)
+# Create instance of the API
73
+configuration = groupdocs_conversion_cloud.Configuration(my_client_id, my_client_secret)
74
+apiInstance = groupdocs_conversion_cloud.InfoApi.from_config(configuration)
75
76
# Prepare convert settings
77
settings = groupdocs_conversion_cloud.ConvertSettings()
0 commit comments