遵循 Revit Design Automation 教程时收到错误消息
Getting error message while following Revit Design Automation tutorial
我正在关注 here 的 Revit Autodesk Forge Design Automation 教程。
我完成了所有步骤,但最后的第 7 步 returns 出现以下错误 -
{
"appbundles": [
"The App V0XRbvF7fj6glAh1PFwcG0s2680gZmTL.DeleteWallsApp+test could not be found\nParameter name: appbundles"
]}
任何人都可以让我知道是否缺少我应该考虑的东西吗?如果有更好的示例教程,我将不胜感激。
从错误来看,您似乎错过了任务 4(上传 AppBundle)的一个步骤(或者其中一个步骤出了问题)。
我会检查任务 4 以确保您正确执行了以下步骤:
- 注册 AppBundle
- 上传 AppBundle
- 为 AppBundle 创建别名
要验证您的 appBundle 是否已正确设置,您可以:
验证可以看到
"V0XRbvF7fj6glAh1PFwcG0s2680gZmTL.DeleteWallsApp+test" 在列表中
执行此请求时可用的 AppBundle
https://forge.autodesk.com/en/docs/design-automation/v3/reference/http/appbundles-GET/
验证您可以从
package url 你可以用这个请求检索(注意这可以
只能由 AppBundle 的所有者完成):
https://forge.autodesk.com/en/docs/design-automation/v3/reference/http/appbundles-id-GET/
补充 Jeremy Farand-Belanger 所说的内容:
根据教程,您应该使用 nickname 来引用您的应用程序包,但在您的示例中,您使用的是 Forge 应用程序客户端 ID;如果您在前面的步骤之一中创建了昵称,请确保在所有后续调用中使用该名称
如果您正在使用 Visual Studio 代码,我们将维护一个扩展程序,允许您浏览各种 Forge 服务和内容,包括设计自动化:https://marketplace.visualstudio.com/items?itemName=petrbroz.vscode-forge-tools;您可以使用它来浏览您的设计自动化应用程序包、活动等。
如果您仍然无法启动您的工作项目,请向我们发送有关您提出的请求的更多详细信息forge (dot) help (at) autodesk (dot) com
,我们将进一步调查此问题
我正在关注 here 的 Revit Autodesk Forge Design Automation 教程。 我完成了所有步骤,但最后的第 7 步 returns 出现以下错误 -
{
"appbundles": [
"The App V0XRbvF7fj6glAh1PFwcG0s2680gZmTL.DeleteWallsApp+test could not be found\nParameter name: appbundles"
]}
任何人都可以让我知道是否缺少我应该考虑的东西吗?如果有更好的示例教程,我将不胜感激。
从错误来看,您似乎错过了任务 4(上传 AppBundle)的一个步骤(或者其中一个步骤出了问题)。 我会检查任务 4 以确保您正确执行了以下步骤:
- 注册 AppBundle
- 上传 AppBundle
- 为 AppBundle 创建别名
要验证您的 appBundle 是否已正确设置,您可以:
验证可以看到 "V0XRbvF7fj6glAh1PFwcG0s2680gZmTL.DeleteWallsApp+test" 在列表中 执行此请求时可用的 AppBundle https://forge.autodesk.com/en/docs/design-automation/v3/reference/http/appbundles-GET/
验证您可以从 package url 你可以用这个请求检索(注意这可以 只能由 AppBundle 的所有者完成): https://forge.autodesk.com/en/docs/design-automation/v3/reference/http/appbundles-id-GET/
补充 Jeremy Farand-Belanger 所说的内容:
根据教程,您应该使用 nickname 来引用您的应用程序包,但在您的示例中,您使用的是 Forge 应用程序客户端 ID;如果您在前面的步骤之一中创建了昵称,请确保在所有后续调用中使用该名称
如果您正在使用 Visual Studio 代码,我们将维护一个扩展程序,允许您浏览各种 Forge 服务和内容,包括设计自动化:https://marketplace.visualstudio.com/items?itemName=petrbroz.vscode-forge-tools;您可以使用它来浏览您的设计自动化应用程序包、活动等。
如果您仍然无法启动您的工作项目,请向我们发送有关您提出的请求的更多详细信息
forge (dot) help (at) autodesk (dot) com
,我们将进一步调查此问题