Does dropbox have a way of notifying when a file changes i.e arrival of new uploads or a file has changed.
|
Not through the API, no. You could continually poll, but my guess is that's against the terms of service and will get your token revoked quickly. edit (8-20-2012):
As Kannan points out below, there's a new API endpoint called |
|||||||||||||||
|
|
Though you will still have to poll, there's a relatively new API endpoint called It's better than using the RSS feed. |
|||
|
|
|
This delta API can be called to get sync |
|||
|
|
|
If you have a computer with Dropbox installed that is always on, you can set a script to run whenever Dropbox pops up a change notification. That script could then grab the change log using RSS (or the /delta API) and if the file/directory you're interested has changed, send a notification. On Mac, Dropbox can send notifications to Growl and you can tell Growl to run your script. On Windows you will need to monitor for Notifications in the system tray using something like gTraySpy. Growl for Windows can do this if you install the Windows Balloons plugin. As long as you can get a script to run when a change has occurred, it's just a matter of parsing the change log and performing an action when certain item(s) have changed. |
|||
|
|
|
Dropbox SYNC API is the way to go
|
|||
|
|