1

We are developing a web application with C Sharp as backend, We trying to integrate BIM 360 data connector in our application, For which, can anyone share a sample BIM 360 data connector source code in C#?

Leandro Bardelli
  • 10,561
  • 15
  • 79
  • 116

2 Answers2

0

Check this PDF, has code for .NET Core and .NET Framework:

Connect to Fusion Team & BIM 360 data

Leandro Bardelli
  • 10,561
  • 15
  • 79
  • 116
0

The material Leandro shared has been the learning tutorial at: https://learnforge.autodesk.io/#/tutorials/viewhubmodels which introduces how to build application of Forge to connect BIM 360 model documents step-by-step.

While my understanding is what you are looking for is on how to use Data Connector API in .NET. As far as I know, our Forge team has not sample in .NET, but has samples in Node.js (which is also based on the skeleton of learning tutorial above) https://github.com/Autodesk-Forge/forge-bim360-data.connector.dashboard

In addition, we also provided Postman collection for Data Connector API: https://github.com/Autodesk-Forge/forge-bim360-data.connector.api-postman.collection In Postman, code snippet in various languages (including .NET)) is available. It might be a reference for you to build the final application: https://learning.postman.com/docs/sending-requests/generate-code-snippets/

Xiaodong Liang
  • 2,051
  • 2
  • 9
  • 14
  • If you are the owner of any of this code that you referenced, you should specify this. Why do you say "we also provided" ? – Leandro Bardelli Dec 22 '21 at 12:04
  • what I meant is although we have not .NET sample for Data Connector API at this moment, the Postman collection may be probably helpful because it has Code Snippet feature. This feature can show the snippet of the endpoint of API in languages such as Restsharp (in C#). These snippet could be merged to the LearnForge tutorial skeleton, as I did in Node.js. – Xiaodong Liang Dec 23 '21 at 01:00