简体   繁体   English

我可以通过在 C# 中使用 webhook API 从 Forge 获取文件翻译进度百分比的帮助/示例吗?

[英]Can I get some help/example on how to get the file translation progress percentage from Forge by using webhook API in C#?

Can I get some help/example on how to get the file translation progress percentage from Forge by using web-hook API in C#?我可以通过在 C# 中使用 web-hook API 从 Forge 获取文件翻译进度百分比的帮助/示例吗?

You can find many samples on https://github.com/Autodesk-Forge .您可以在https://github.com/Autodesk-Forge上找到许多示例。 For C# examples around webhook, try https://github.com/Autodesk-Forge?q=webhook&type=&language=c%23 .对于 webhook 周围的 C# 示例,请尝试https://github.com/Autodesk-Forge?q=webhook&type=&language=c%23

In order to track the progress of your file translation, you can simply create a webhook for the extraction.updated event, and then use the Modle Derivative endpoint GET /modelderivative/v2/designdata/:urn/manifest to retrieve the JSON manifest which will include the status of the translation for the entire document as well as the translation status of its individual 2D or 3D outputs.为了跟踪文件翻译的进度,您可以简单地为extract.updated事件创建一个 webhook,然后使用模块派生端点GET /modelderivative/v2/designdata/:urn/manifest检索 JSON 清单,该清单将包括整个文档的翻译状态以及其各个 2D 或 3D 输出的翻译状态。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何在C#中使用“参数”来获得此示例? - How can I get this example using “param” in C# to work? 如何从 FTP 获取文件(使用 C#)? - How can I get file from FTP (using C#)? 如何使用派生API或Autodesk.forge库C#从DWG文件检索图层列表 - How to retrieve list of layers from dwg file using derivative api or Autodesk.forge library c# 如何从C#中的文件路径获取子字符串? - How can I get a substring from a file path in C#? 如何在C#中使用Webhook获取用户信息 - How to get user information using webhook in c# 如何获取上传的伪造文件的 URN? - How can i get the URN of an uploaded forge file? 如何从链接中读取 CSV 文件并使用 C# 获取一列数据的平均值? - How can I read a CSV file from a link and get an average of a column of data using C#? 如何使用c#或vb从pst文件中获取Outlook日历的名称? - how can i get the names of outlook calendars from pst file using c# or vb? Wep api .NET C#:我如何使用 GET 方法从 model 中获取 select 中的几个属性? - Wep api .NET C#: how can I select only a few attribute from a model using a GET method? 如何使用 VSTS Git API for C# 获取给定提交 ID 的所有拉取请求 ID(来自合并提交) - How can I get all pull requests Ids (from merged commits) for a given commit Id using VSTS Git API for C#
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM