File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -65,11 +65,13 @@ python setup.py install
6565``` python
6666import groupdocs_conversion_cloud
6767
68- app_sid = " XXXX-XXXX-XXXX-XXXX"
69- app_key = " XXXXXXXXXXXXXXXX"
68+ # Get Client Id and Client Secret from https://dashboard.groupdocs.cloud
69+ my_client_id = " "
70+ my_client_secret = " "
7071
71- # Create necessary API instances
72- apiInstance = groupdocs_conversion_cloud.ConvertApi.from_keys(Common.app_sid, Common.app_key)
72+ # 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)
7375
7476# Prepare convert settings
7577settings = groupdocs_conversion_cloud.ConvertSettings()
You can’t perform that action at this time.
0 commit comments