Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
Hi,
I'm using the upload api to send some images to my Dropbox account. What I'm noticing is that the images' creation dates are being set to the upload date. So if I took a picture yesterday on my iPhone, and today sending it on my app, through the Dropbox API, the creation date is "now". That's rather unfortunate. The Camera Upload folder keeps the creation date on the files though, so I would like to know if that's possible.
Being a bit more technical, I'll post some code. I'm using Swift 3 and iOS 10.
I'm actually fetching the Image Data through:
PHAsset.fetchAssets(withALAssetURLs: [imageLocalUrl], options: nil) PHImageManager.default()
.requestImageData(for: asset,
options: requestOptions) { resultData, response, orientation, info in data = resultData }
Then using the Dropbox upload api like this:
DropboxClientsManager
.authorizedClient
.files
.upload(path: "<path/to/folder/imageName.jpg>", input: data)
Thank you
I see, thanks for clarifying. In that case, in order to preserve that when uploading via the API, set the clientModified to be the expected time when calling upload.
Not sure. I was actually thinking this would be automatically.
In Finder (macOS) I'm actually seeing this on an image that I just uploaded but the picture itself was taken well before.
https://www.dropbox.com/s/i8v58nrq1igjj0b/Screenshot%202016-12-13%2021.46.04.png?dl=0
The Camera Upload folder keeps the dates propperly according to the photo creation date.
I see, thanks for clarifying. In that case, in order to preserve that when uploading via the API, set the clientModified to be the expected time when calling upload.
Thank you very much. I hadn't found that documentation yet. Shame on me. Thanks again.
Hi there!
If you need more help you can view your support options (expected response time for a ticket is 24 hours), or contact us on Twitter or Facebook.
For more info on available support options, see this article.
If you found the answer to your question, please 'like' the post to say thanks to the user!