klokan / webstor

High performance C++ API for Amazon S3
Apache License 2.0
1 stars 2 forks source link

Upload to DropBox with REST API - with progressbar for a large file #10

Closed klokan closed 11 years ago

klokan commented 11 years ago

We need to upload individual MBTiles file which can be pretty large into DropBox with their REST API. Unfortunately they do not have an C/C++ API. Either we link it against another language or we add implementation of DropBox API into webstore - at least for uploading large files with progress bar.

To be confirmed.

xrosecky commented 11 years ago

DropBox uses OAuth v1.0 for authentication, in C++ you can use this library (pure implementation with no external dependencies):

https://github.com/sirikata/liboauthcpp

klokan commented 11 years ago

This has been already implemented now: https://github.com/binaryking/nub