autodesk-data-management

Autodesk Forge: I created an app to translate CAD files, but cannot see properties for an assembly

烂漫一生 提交于 2021-02-11 14:19:31
问题 So I created a nodejs app to translate CAD files and to display them in the viewer. For .rvt files and individual Inventor components I can see the properties by going to Model Browser and clicking on each component, however, I cannot see properties for an entire Inventor assembly. How can I go about seeing assembly properties? I am using this sample: https://github.com/Autodesk-Forge/viewer-walkthrough-online.viewer Only change I made was set compressedUrn to true and added a rootFileName to

Autodesk Forge Data Manager Api rename a Item

巧了我就是萌 提交于 2021-01-28 00:15:06
问题 I'm tried to use this PATCH Api to rename item of "A360". It returns 200 with DisplayName updated, but on myhub.autodesk360.com the item seems rendered with "Name" property of json object "Included". this is the request body : { "jsonApi": { "version": "1.0" }, "data": { "id": "urn:adsk.wipprod:dm.lineage:tMqu2aQEToa3XsRmKzTTRg", "type": "items", "attributes": { "displayName": "new_item", "name" : "new_item" } } this is the response : "data": { "type": "items", "id": "urn:adsk.wipprod:dm

Create Signed URL for Object in BIM360 OSS

人盡茶涼 提交于 2020-07-08 03:21:17
问题 I'm trying to set up an Signed URL for an Design Automation Workflow which is triggered by an Webhook inside of the BIM360 OSS. If a file is added the webhooks triggers an endpoint to start a Design Automation. The webhook is working. And the Design Automation is working too. The Problem occurs if i try to wire both up. I#m trying to create a Signed URL of the File like suggested in this post from Petr Broz link stackoverflow. To use this API it is requierd to use an Token which is obatined

Create Signed URL for Object in BIM360 OSS

北城以北 提交于 2020-07-08 03:21:14
问题 I'm trying to set up an Signed URL for an Design Automation Workflow which is triggered by an Webhook inside of the BIM360 OSS. If a file is added the webhooks triggers an endpoint to start a Design Automation. The webhook is working. And the Design Automation is working too. The Problem occurs if i try to wire both up. I#m trying to create a Signed URL of the File like suggested in this post from Petr Broz link stackoverflow. To use this API it is requierd to use an Token which is obatined

Upload large files (2GB) to Autodesk Forge Data Management API

你说的曾经没有我的故事 提交于 2020-04-16 03:23:44
问题 I am trying to upload some models to the Autodesk Forge Data Management API. Unfortunately, the models are 1GB+ in size and the API gives a timeout exception: StatusCode: 504, ReasonPhrase: 'GATEWAY_TIMEOUT' Using the following code (C#): var url = $"https://developer.api.autodesk.com/oss/v2/buckets/{bucketKey}/objects/{objectName}"; using (var httpClient = GetAuthorizedHttpClient("data:write")) { httpClient.Timeout = TimeSpan.FromMinutes(120); var request = new HttpRequestMessage(HttpMethod