Skip to content

Commit 3a8b289

Browse files
authored
Create upload_files_from_json_to_dropbox.ws
1 parent 5bc7605 commit 3a8b289

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

upload_files_from_json_to_dropbox.ws

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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+
}

0 commit comments

Comments
 (0)