File tree 1 file changed +35
-0
lines changed
1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change
1
+ // Change this to your dropbox provider ID from here: https://webhook.site/providers
2
+ providerId = 19
3
+
4
+ files = json_path(var ('request .content '), '.FlyerFile .*')
5
+
6
+ for (fileInfo in files ) {
7
+
8
+ // Download file from URL
9
+ fileDownload = request (fileInfo ['File '])
10
+
11
+ // Check if file link invalid or expired
12
+ if (fileDownload ['status '] != 200 ) {
13
+ echo (
14
+ 'Could not upload /FlyerFiles /%s, got status %s '.format (
15
+ fileInfo ['Name '],
16
+ fileDownload ['status ']
17
+ )
18
+ )
19
+ continue
20
+ }
21
+
22
+ // Execute Dropbox Upload File action
23
+ action (
24
+ 'dropbox_upload_file ',
25
+ [
26
+ 'path ': '/FlyerFiles /%s '.format (fileInfo ['Name ']),
27
+ 'body ': fileDownload ['content '],
28
+ 'mode ': 'update ',
29
+ 'provider_id ': providerId
30
+ ]
31
+ )
32
+
33
+ echo ('Uploaded /FlyerFiles /%s '.format (fileInfo ['Name ']))
34
+
35
+ }
You can’t perform that action at this time.
0 commit comments