Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 Rest APi 将 UrbanCode 仪表板中的组件、快照和环境拉到我的 Web 应用程序下拉列表中。提前致谢..
如果您想要显示当前正在运行的进程的仪表板视图的内容,您可以使用(内部的,不受支持的)REST API。通过在浏览器或 Firebug 等插件中打开开发人员工具,然后加载仪表板页面,您可以看到创建页面的 REST 请求。获取当前活动的请求是这样的:
https://ucd.example.com:8443/rest/workflow/currentActivity?rowsPerPage=10000&pageNumber=1&orderField=startDate&sortType=desc
因此,您可以使用对 rest/workflow/currentActivity 的 GET 调用来获取仪表板上的相同类型的信息。这是你要求的吗?