QtDropbox
QtDropbox copied to clipboard
Dropbox API for Qt
Dropbox is deprecating api v1. Every application should update to v2 asap, according to their information. QtDropbox currently still uses v1.
I cannot find somewhere this: fileops/delete https://www.dropbox.com/developers-v1/core/docs#fileops-delete So, if I want to delete a file or a folder, what I have to do?
#50 The issue that was that QTDROPBOXSHARED_EXPORT wasn't being put in front of the class definition, which caused the generated libraries not to include this class and its functions.
Hello Daniel. Sorry my english is not very good. I'm trying to run the Test program that comes with the zip but I really don't know how to do it....
Hi Daniel, hope you are doing great! I'm checking back to ask if QT Dropbox is still working? I was trying to upload a video with QT Dropbox and the...
I've just discovered a bug in QDropboxJson::parseString function (qdropboxjson.cpp). The issue is that if json string contains [ character that is quoted, parser gets confused and sets isArray=true , but...
Hi, First I want to show my code: ``` QDropbox* api; api= new QDropbox("****","****",QDropbox::Plaintext,"api.dropbox.com"); api->requestToken(); connect(api,SIGNAL(requestTokenFinished(QString,QString)),this,SLOT(requestToken())); ``` connect(api,SIGNAL(tokenExpired()),this,SLOT(showAuthError())); The problem I am getting is that when api->requestToken() is being executed,...
qt-pods is a package manager for Qt libraries: https://github.com/cybercatalyst/qt-pods I offer you my helpif you need it, so you can make QtDropbox compatible.
Currently JSON objects returned by Dropbox are processed by the QDropboxJson class. This class was initially intended to provide a limited read-only access to JSON objects but it grew larger....