在 JIRA SOAP 中解析为重复项
我找不到任何方法在 JIRA Soap 中关闭重复项,知道使用哪种方法以及如何使用吗?
$rIssue= array();
$rIssue['resolution'] = 3;
$soap->progessWorflowAction($auth,$issue,21,$rIssue);
但这将其标记为“已解决”,而不是“重复”。
I couldn't find any way to close as duplicate in JIRA soap, any idea which method to use and how to use?
$rIssue= array();
$rIssue['resolution'] = 3;
$soap->progessWorflowAction($auth,$issue,21,$rIssue);
But this marks its as Resolved fixed instead of duplicate.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这与我们之前遇到的更新问题相同。
该参数的第四个参数需要一个 RemoteFieldValue 对象的数组。
试试这个:
或者尝试像这样修改你的示例:
This is the same issue we had before with your update issue problem.
The fourth param of this argument is expecting an array of RemoteFieldValue objects.
Try this:
Or try modifying your example like this: