标签: php soap jira
有人能告诉我一个使用PHP代码通过SOAP添加附件到JIRA问题的例子吗?
JIRA addAttachmentsToIssue method
答案 0 :(得分:1)
$this->soapClient->addBase64EncodedAttachmentsToIssue($this->token, $this->issue->key, array('test.txt'), array(base64_encode('test')));