How do you use cloud storage such as Dropbox in your C++ Apllication ? I've checked out their API and they only have Java, Python, and Ruby options. If you cant use dropbox with a c++ app, is therte any cloud storage provider that has an API for C++.
|
|
The drop box APIs seem to be wrappers for a http interface. So if you want to hit them up from C++ you can use a http supporting library like libcurl to access stuff using the REST api |
|||||
|
|
Droper is an open source C++/Qt Dropbox client that I have recently wrote. It's not perfect and there is a symbol support issue but you can start from there and improve. Note: it can only be compiled for a Symbian target but with few edits it can work for a desktop (Windows, Linux, etc.) target. EDIT: The latest version (0.5.0) restores desktop support, so now it can be compiled for desktop platforms like windows and linux, but the GUI is optimized for Symbian mobile phones... |
||||
|
|
|
I've found several differnet APIs on their website, righ under the place you propably found the ruby / pathon stuff.. http://sharpbox.codeplex.com/ http://github.com/dkarzon/DropNet Not sure if this is, wha you were looking for.. |
|||||
|