将文件上传到 BIM 360 Document Management Forge API 时出现的问题

问题描述

我在将文件上传到 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);
    }

请帮忙

解决方法

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

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