dropbox-api-command
dropbox-api-command copied to clipboard
command line interface to access Dropbox API
Dear Sir I'm use dropbox-api-command in freebsd 12.1 and perl5.30. use dropbox-api command and show this error. panic: XSUB Package::Stash::XS::list_all_symbols (XS.c) failed to extend arg stack: base=801a26e18, sp=801a26e80, hwm=801a26e40 Compilation...
i can't setup a new app: ``` floswald@m0:~$ dropbox-api ls Please Input API Key: ****** Please Input API Secret: ****** 1. Open the Login URL: https://www.dropbox.com/oauth2/authorize?client_id=********&response_type=code 2. Input code and...
Was getting "_FAIL Installing Net::SSLeay failed._" error on Ubuntu 16.04.4 x64. libssl-dev was installed per [https://stackoverflow.com/questions/21729975/error-installing-in-netssleay](url) Fixed the issue by doing... `sudo apt-get install libnet-ssleay-perl` ...followed by... `sudo perl ./cpanm...
Hi, This: ``` $ mkdir .diff/foo $ touch .diff/foo/bar $ dropbox-api sync .diff dropbox:/diffs/ -d upload foo/bar /diffs/foo/bar mktree foo /diffs/foo 2018-02-14T13:40:43 [WebService::Dropbox] [ERROR] https://api.dropboxapi.com/2/files/create_folder {"path":"/diffs/foo"} -> [409] {"error_summary": "path/conflict/folder/..",...
Hi, I've installed the xCode Developer Tools. curl -O https://raw.github.com/miyagawa/cpanminus/master/cpanm fails to transfer anything. I grabbed the cpanm installation directly from http://cpanmin.us sudo perl cpanm App::dropboxapi runs, but dropbox-api does...
``` $ dropbox-api put data.GoPro/2017-01-23T07.25.11.000000Z.m4v dropbox:/ 2017-02-06T19:57:50 [WebService::Dropbox] [ERROR] https://content.dropboxapi.com/2/files/upload {"mode":"overwrite","path":"/2017-01-23T07.25.11.000000Z.m4v"} -> [413] Dropbox - 4xx ... ``` That's unnecessary and makes it hard to use when my console floods...
Uploads fail with 413 on large files because [file_upload](https://dropbox-sdk-python.readthedocs.io/en/master/moduledoc.html#dropbox.dropbox.Dropbox.files_upload) isn't meant for large files. Files >150M should use: * [files_upload_session_start](https://dropbox-sdk-python.readthedocs.io/en/master/moduledoc.html#dropbox.dropbox.Dropbox.files_upload_session_start) * [files_upload_session_append_v2](https://dropbox-sdk-python.readthedocs.io/en/master/moduledoc.html#dropbox.dropbox.Dropbox.files_upload_session_append_v2) * [files_upload_session_finish](https://dropbox-sdk-python.readthedocs.io/en/master/moduledoc.html#dropbox.dropbox.Dropbox.files_upload_session_finish)
On FreeBSD 12-current r310018, I am getting the following error when trying to sync with dropbox-api-command-2.09: ``` $ dropbox-api sync dropbox:/ Dropbox/ Can't call method "epoch" on an undefined value...
The README misses very important information: "How to SAFELY perform 2-way synchronization?". For example - if I start periodically from cron such script: ``` #!/bin/sh dropbox-api-command sync dropbox:/ ~/Dropbox -d...
Currently if you upload ABC.txt and then download you may get two copies - both ABC.txt and abc.txt. Since dropbox is "case insensitive" and downloads ~arbitrarily with correct case or...