我無法通過PHP中的SOAP API創建問題。我試過這個:通過SOAP API和PHP創建JIRA問題
$soapClient = new SoapClient("http://jira:9090/rpc/soap/jirasoapservice-v2?wsdl");
$token = $soapClient->login('user', 'pass');
$issue=array(
'type'=>3,
'priority'=>3,
'project'=>'XXX',
'duedate'=>time(),
'components'=>'',
'versions'=>'',
'fixVersions'=>'',
'assignee'=>'user1',
'reporter'=>'user1',
'environment'=>'',
'description'=>'test',
'summary'=>'test',
'timetracking'=>'',
'attachment'=>'',
'labels'=>''
);
$soapClient->createIssue($token, $issue);
但是當我運行這個腳本時,新問題不會在JIRA中創建。有人可以幫我解決這個問題嗎?
哪個Jira版本? – Kuf
身份驗證中的用戶標識「用戶」是否有權設置記者字段?另外嘗試不設置duedate字段,因爲時間的結果不可能是預期的格式。 – mdoar
嗨,如果這有幫助,請[接受我的回答](http:// meta。stackexchange.com/questions/16721/how-does-accept-rate-work/65088#65088)謝謝! :) – Kuf