Sinisterly
Need some help. - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Coding (https://sinister.ly/Forum-Coding)
+--- Forum: Coding (https://sinister.ly/Forum-Coding--71)
+--- Thread: Need some help. (/Thread-Need-some-help--40266)



Need some help. - Reverence - 02-27-2012

Is it possible to upload a text file to dropbox using AutoIt? If it is, someone please enlighten me on how I can do this.


RE: Need some help. - 1234hotmaster - 02-27-2012

I never tried interacting with dropbox. i'll see if i can tomorrow sorry.


RE: Need some help. - Reverence - 02-27-2012

(02-27-2012, 07:43 AM)1234hotmaster Wrote: I never tried interacting with dropbox. i'll see if i can tomorrow sorry.

No need to be sorry. Thanks for your effort Biggrin


RE: Need some help. - 1234hotmaster - 02-27-2012

if only i could find out the cipher of this
Code:
HKEY_CURRENT_USER\Software\Dropbox\ks /Client
i could have a bit of a chance otherwise of what i checked dropbox is secured Sad


RE: Need some help. - Reverence - 02-28-2012

(02-27-2012, 10:01 AM)1234hotmaster Wrote: if only i could find out the cipher of this
Code:
HKEY_CURRENT_USER\Software\Dropbox\ks /Client
i could have a bit of a chance otherwise of what i checked dropbox is secured Sad

There is a site called dropitto.me

All you have to do is upload a file and it automatically gets send to your dropbox, I was thinking that can be used.


RE: Need some help. - Frooxius - 02-28-2012

If you want to interact with any existing service, check if they provide any API (Application Programming Interface) and SDK (Software Development Kit) which generally allows writing a code that can work with the service, in this case, managing, uploading and downloading files with DropBox. A simple Google search "Dropbox API" or "Dropbox SDK" found exactly what you need:
http://www.dropbox.com/developers

Once you have access to the documentation of their API, implementing what you need to interact with them is just a simple matter of following the specification.