使用Autodesk Forge API接收集线器列表

时间:2017-08-03 15:17:46

标签: c# autodesk-forge autodesk-data-management

我正在尝试使用Autodesk forge API for C#来获取集线器列表。 这是我到目前为止所做的:

HubsApi api = new HubsApi();
Hubs hubs = api.GetHubs();

非常简单。但是当我这样做时,我得到一个例外,抱怨说,我无法从DynamicJsonResponse转换为Hubs。我想,这是因为我在响应字符串中收到两个警告,因此它不再是Hub对象。警告如下:

"warnings":[  
        {  
           "Id":null,
           "HttpStatusCode":"403",
           "ErrorCode":"BIM360DM_ERROR",
           "Title":"Unable to get hubs from BIM360DM EMEA.",
           "Detail":"You don't have permission to access this API",
           "AboutLink":null,
           "Source":[  

           ],
           "meta":[  

           ]
        }

所有这些都包含在一个包含四个条目的词典中,其中只有两个是数据。但是,根据Autodesk的说法,这个警告可以忽略不计。

之后,我尝试在Dictionary中转换它,只选择数据条目

HubsApi api = new HubsApi();
DynamicJsonResponse resp = api.GetHubs();
DynamicDictionary hubs = (DynamicDictionary)resp.Dictionary["data"];

然后我循环了它:

for(int i = 0; i < hubs.Dictionary.Count && bim360hub == null; i++)
{
    string hub = hubs.Dictionary.ElementAt(i).ToString();
    [....]
}

但字符串hub也不是json-hub。这是一个如下所示的数组:

[
  0,
  {
    "type": "hubs",
    "id": "****",
    "attributes": {...},
    "links": {...},
    "relationships": {...},
  }
]

数组中的第二个元素是我的中心。我知道,我如何选择第二个元素。但必须更容易获得集线器列表。 在参考文献中的一个例子中,似乎可以使用这些简单的两行代码:

HubsApi api = new HubsApi();
Hubs hubs = api.GetHubs();

任何想法,我如何设法获得我的中心?

1 个答案:

答案 0 :(得分:1)

首先,请考虑使用这些方法的Async版本,避免使用非异步调用,因为它会导致桌面应用程序冻结(在连接时)或在ASP.NET上分配更多资源。 / p>

以下functionthis sample的一部分,其中列出了用户帐户下的所有集线器,项目和文件。这是一个很好的起点。请注意,它会在TreeNode列表中组织集线器,该列表与jsTree兼容。

private async Task<IList<TreeNode>> GetHubsAsync()
{
  IList<TreeNode> nodes = new List<TreeNode>();

  HubsApi hubsApi = new HubsApi();
  hubsApi.Configuration.AccessToken = AccessToken;

  var hubs = await hubsApi.GetHubsAsync();
  string urn = string.Empty;
  foreach (KeyValuePair<string, dynamic> hubInfo in new DynamicDictionaryItems(hubs.data))
  {
    string nodeType = "hubs";
    switch ((string)hubInfo.Value.attributes.extension.type)
    {
      case "hubs:autodesk.core:Hub":
        nodeType = "hubs";
        break;
      case "hubs:autodesk.a360:PersonalHub":
        nodeType = "personalhub";
        break;
      case "hubs:autodesk.bim360:Account":
        nodeType = "bim360hubs";
        break;
    }
    TreeNode hubNode = new TreeNode(hubInfo.Value.links.self.href, (nodeType == "bim360hubs" ? "BIM 360 Projects" : hubInfo.Value.attributes.name), nodeType, true);
    nodes.Add(hubNode);
  }

  return nodes;
}