Hi,
I I call listInfo with includeMediaInfo parameter. How can I extract the media_info as per the reference document:
<EM>includeMediaInfo</EM> |
If true, :field:‘FileMetadata.media_info’ is set for photo and video.
|
Code extract:
client.files.listFolder(path: path, recursive: false, includeMediaInfo: true, includeDeleted: false).response { response, error in
if let result = response {
for entry in result.entries {
....
}
}