How do you define a dropbox path, i could not find any information about the exact path to enter, I tried every combinations for path nothing works
I get this error
|ERROR|INTERNAL_COMMAND_ERROR|
|EXITCODE 1
|EXITSIGNAL||
|STDOUT|{“error”:“path/malformed_path/…”}|
|STDERR||
|REASON|DropboxStoreCommand failed with exit code: 1|
This is my assembly (it is success except for uploading the output to dropbox)
{
“steps”: {
“:original”: {
“robot”: “/upload/handle”
},
“filter”: {
“use”: “:original”,
“robot”: “/file/filter”,
“accepts”: [
[
“${file.mime}”,
“regex”,
“video”
]
],
“error_on_decline”: true
},
“watermark”: {
“use”: “filter”,
“robot”: “/video/encode”,
“watermark_url”: “https://demos.transloadit.com/inputs/transloadit-padded.png”,
“watermark_size”: “25%”,
“watermark_position”: “bottom-right”,
“ffmpeg_stack”: “v3.3.3”
},
“thumbnail”: {
“use”: “watermark”,
“robot”: “/video/thumbs”,
“ffmpeg_stack”: “v3.3.3”,
“count”: 1
},
“compress-archive”: {
“use”: [
“watermark”,
“thumbnail”
],
“robot”: “/file/compress”,
“format”: “tar”,
“gzip”: true
},
“export”: {
“use”: [
“watermark”,
“thumbnail”,
“compress-archive”
],
“robot”: “/dropbox/store”,
“credentials”: “xxxxxx”,
“path”: “designx”
}
}
}