I'm trying to make an application using Sharpbox for download one file of my dropbox directory. I try to download the file with the downloadFile() method, the code is:
CloudStorage dropBoxStorage = new CloudStorage();
dropBoxStorage.Open(dropBoxConfig, accessToken);
dropBoxStorage.DownloadFile(FilePath, TargetPath);
I think that dropBoxConfig and accessToken are fine because I can display the folders and files in dropbox, but when I try to download, I obtain this error:
The remote server returned an error (403) forbidden
Error en el servidor remoto: (403) Prohibido.
Help me, please. Thank you.