I've been able to create a PHP app that allows me to upload files through the API into dropbox. It works great; however, the problem is, the first time you access it, you have to authenticate to get the token and then it's able to work. This all requires interaction of a user to do so. My goal is to create a cron job that will run hourly and copy any new files from a folder into my dropbox in order to have a backup copy of the files. Is this possible? If so, can anyone point me in the direction of an example?
Thank you!