Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
I'm using ListFolderAsync in asp.net. Why doesn't it return the modified date time based on the logged in user's Account time zone? Any idea how to display it in the Account's time zone?
Thanks.
The API itself returns all datetimes in 'UTC and are strings in the ISO 8601 "combined date and time representation" format: 2015-05-15T15:50:38Z'.
The .NET SDK translates these into native DateTime objects, e.g., as returned in FileMetadata.ClientModified. You can use the standard DateTime methods there to format and display the datetime in whatever format or time zone desired.
The API itself returns all datetimes in 'UTC and are strings in the ISO 8601 "combined date and time representation" format: 2015-05-15T15:50:38Z'.
The .NET SDK translates these into native DateTime objects, e.g., as returned in FileMetadata.ClientModified. You can use the standard DateTime methods there to format and display the datetime in whatever format or time zone desired.
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!