8

我正在尝试以编程方式在 Maniphest 上创建任务/错误:https ://www.phacility.com/phabricator/maniphest/

但我似乎无法找到可以做到这一点的 RESTful API。

我完全错过了什么吗?或者目前不存在

4

2 回答 2

7

导管(https://secure.phabricator.com/book/phabricator/article/conduit/)应该适合你。有一个名为 createtask 的方法(看起来像https://secure.phabricator.com/conduit/method/maniphest.createtask/)正是您正在寻找的。

于 2014-07-23T15:26:43.760 回答
0

您可以访问phabricator的api,创建任务,查询用户信息等。

这是 postman 访问 https api 的演示。

注意:对于“ccPHIDs”等多值字段,应使用图片格式。 在此处输入图像描述

但在导管 UI 测试中。你必须使用 json 格式,像这样: ["PHID-PROJ-xxx3", "PHID-PROJ-xx12"]

phabricator 的 API 是 wrost 的 api 集,我现在已经使用过了。真恶心...

于 2019-03-04T14:07:34.460 回答