Product Overview
Feature Description
Product Strengths
Use Cases
Basic Concept
API | Operation Description |
Check file status |
QCloudSMHHeadFileRequest * request = [QCloudSMHHeadFileRequest new];// Space ID; if the media library is in single-tenant mode, this parameter is fixed as a hyphen (-); if the media library is in multi-tenant mode, you must specify this parameterrequeset.spaceId = @"spaceId";// Media Library ID, required parameterrequeset.libraryId = @"libraryId";// Complete file path, for example /api/v1/file/smhxxx/-/foo/bar/file.docxrequest.filePath = @"filePath";// Earlier version ID, used to obtain file content of different versions, optional parameter, defaults to the latest version;request.historyId = @"historyId";[request setFinishBlock:^(id _Nullable outputObject, NSError * _Nullable error) {}];[[QCloudSMHService defaultSMHService] headFile:request];
피드백