【问题标题】:Issues While uploading files to BIM 360 Document Management Forge API将文件上传到 BIM 360 Document Management Forge API 时出现问题
【发布时间】:2021-06-06 04:06:39
【问题描述】:

我在将文件上传到 BIM 360 时遇到问题。一直关注 https://forge.autodesk.com/en/docs/bim360/v1/tutorials/document-management/upload-document/ 并且能够执行到第 5 步。但是在上传时,状态显示“未找到”。请帮助我了解代码是否有任何问题

    public async void uploadfile(string projectUrl,string projectName)
    {
        string[] idParams = projectUrl.Split('/');
        string projectId = idParams[idParams.Length - 1];
        Credentials credentials = await Credentials.FromSessionAsync(base.Request.Cookies, Response.Cookies);
        ProjectsApi projectsApi = new ProjectsApi();
        projectsApi.Configuration.AccessToken = credentials.TokenInternal;
        var href = "";
        var folders = await projectsApi.GetProjectTopFoldersAsync(hubId, projectId);
        foreach (KeyValuePair<string, dynamic> folder in new DynamicDictionaryItems(folders.data))
        {
            if (folder.Value.attributes.displayName == "Project Files")
                href = folder.Value.links.self.href;
        }
        BaseAttributesExtensionObject baseAttributesExtensionObject = new BaseAttributesExtensionObject("folders", "1.0.0");
        CreateStorageDataAttributes createStorageDataAttributes = new CreateStorageDataAttributes("html-string.pdf", baseAttributesExtensionObject);
        StorageRelationshipsTargetData storageRelationshipsTargetData = new StorageRelationshipsTargetData(0, href.Split('/')[href.Split('/').Length - 1]);
        CreateStorageDataRelationshipsTarget createStorageDataRelationshipTarget = new CreateStorageDataRelationshipsTarget(storageRelationshipsTargetData);
        CreateStorageDataRelationships createStorageDataRelationships = new CreateStorageDataRelationships(createStorageDataRelationshipTarget);
        CreateStorageData stroragebodydata = new CreateStorageData(0, createStorageDataAttributes, createStorageDataRelationships);
        JsonApiVersionJsonapi jsonApiVersionJsonapi = new JsonApiVersionJsonapi(0);
        CreateStorage storagebody = new CreateStorage(jsonApiVersionJsonapi, stroragebodydata);
        var storageCreated = await projectsApi.PostStorageAsync(projectId, storagebody);
        string[] storageIdParams = ((string)storageCreated.data.id).Split('/');
        string[] bucketKeyParams = storageIdParams[storageIdParams.Length - 2].Split(':');
        string bucketKey = bucketKeyParams[bucketKeyParams.Length - 1];
        string objectName = storageIdParams[storageIdParams.Length - 1];
        string uploadUrl = string.Format("/oss/v2/buckets/{0}/objects/{1}", bucketKey, objectName);
        string s = Convert.ToString(2 * 1024 * 1024);
        RestClient client = new RestClient(BASE_URL);
        RestRequest request = new RestRequest(uploadUrl, RestSharp.Method.POST);
        request.AddHeader("Authorization", "Bearer " + credentials.TokenInternal);
        request.AddHeader("Content-Length", s);
        request.AddXmlBody(@"C:\Users\INRM01777\Desktop\Bim360ArchieveTool\Bim360ArchieveTool\html-string.pdf");
        return await client.ExecuteAsync(request);
    }

请帮忙

【问题讨论】:

    标签: autodesk-forge autodesk-bim360 autodesk-data-management


    【解决方案1】:

    我看到您正在通过 RestSharp 和 C# SDK 访问端点。
    请尝试forge-viewhubs 示例中的方法。

    您可以在那里找到专门处理 storagecomplete upload 的代码片段,同时考​​虑大文件的块上传。

    【讨论】:

      猜你喜欢
      • 2021-10-27
      • 2020-05-08
      • 2020-11-05
      • 2020-06-08
      • 2020-06-24
      • 2020-10-12
      • 2017-03-22
      • 2019-03-24
      • 2021-01-29
      相关资源
      最近更新 更多