Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
I have created a template and a list of property group objects but when I get the meta data for the file in a search after I've uploaded it says null for property group. The property groups should have been included when the file is uploaded. I use the Java SDK and I have tried a few different ways:
FileMetadata metadata = client.withPathRoot(pathRoot)
.files()
.uploadBuilder(finalFilePath)
.withPropertyGroups(propertyGroups)
.uploadAndFinish(in);
And also
FileMetadata metadata = client.withPathRoot(pathRoot)
.files()
.uploadBuilder(finalFilePath)
.uploadAndFinish(in);
client.fileProperties().propertiesAdd(metadata.getId(), propertyGroups);
I try getting the metadata a couple of different ways but it is always null:
client.withPathRoot(pathRoot).files().getMetadata(filePath)
Nothing seems to work. Any help will be greatly appreciated.
Apologies for the confusion. When uploading files, you won't see the property information returned in the metadata directly. (I'll pass this along as a feature request though.)
To retrieve it, you'll need to call getMetadataBuilder to get a GetMetadataBuilder, and then use GetMetadataBuilder.withIncludePropertyGroups to specifically request the property information.
The way we work is changing. Share and discover new ways to work smarter with Dropbox in our community.
Sound good? Let's get started.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!