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
res = cloudconvert.Task.wait(id=exported_url_task_id) # Wait for job completion
67
67
file= res.get("result").get("files")[0]
@@ -73,7 +73,7 @@ print(res)
73
73
74
74
Uploads to CloudConvert are done via `import/upload` tasks (see the [docs](https://cloudconvert.com/api/v2/import#import-upload-tasks)). This SDK offers a convenient upload method:
75
75
76
-
```js
76
+
```py
77
77
job = cloudconvert.Job.create(payload={
78
78
'tasks': {
79
79
'upload-my-file': {
@@ -93,7 +93,7 @@ res = cloudconvert.Task.find(id=upload_task_id)
93
93
94
94
The node SDK allows to verify webhook requests received from CloudConvert.
95
95
96
-
```js
96
+
```py
97
97
payloadString ='...'; # The JSON string from the raw request body.
98
98
signature ='...'; # The value of the "CloudConvert-Signature" header.
99
99
signingSecret ='...'; # You can find it in your webhook settings.
0 commit comments