更新与REST API一个JIRA问题。 不能用肥皂(Updating a jira issue

2019-07-05 13:16发布

我的PHP函数来更新JIRA问题就像this.i已经硬编码了这个问题id.it中产生一个错误if (property_exists($result, 'errors')) 说参数不是一个对象。

function post_to($resource, $data) {
$jdata = json_encode($data);
$ch = curl_init();
curl_setopt_array($ch, array(
CURLOPT_POST => 1,
CURLOPT_URL => JIRA_URL . '/rest/api/latest/' . $resource,
CURLOPT_USERPWD => USERNAME . ':' . PASSWORD,
CURLOPT_POSTFIELDS => $jdata,
CURLOPT_HTTPHEADER => array('Content-type: application/json'),
CURLOPT_RETURNTRANSFER => true
));
$result = curl_exec($ch);
curl_close($ch);
return json_decode($result);
}

function create_issue($issue) {
return post_to('issue/10224/editmeta', $issue);
}

$new_issue = array(
    'update' =>array(
        'fields' => array(
            'project' => array('key' => 'DOTNET'),
            'summary' => 'Test via REST',
            'description' => 'Description of issue goes here.',
            'issuetype' => array('name' => 'Task')
            ))
);

$result = create_issue($new_issue);
if (property_exists($result, 'errors')) {
echo "Error(s) creating issue:\n";
var_dump($result);
                }
            }

我到底做错了什么? 请回答。

Answer 1:

真的不知道,让我们尝试一些事情:

更改

CURLOPT_HTTPHEADER => array('Content-type: application/json'),

至:

CURLOPT_HTTPHEADER => array(
    'Accept: application/json',
    'Content-Type: application/json'
);

和:

$new_issue = array(
    'update' =>array(
        'fields' => array(
            'project' => array('key' => 'DOTNET'),
            'summary' => 'Test via REST',
            'description' => 'Description of issue goes here.',
            'issuetype' => array('name' => 'Task')
            ))
);

至:

$new_issue = array(
    'fields' => array(
        'project' => array('key' => 'DOTNET'),
        'summary' => 'Test via REST',
        'description' => 'Description of issue goes here.',
        'issuetype' => array('name' => 'Task')
     )
);

最后,变更:

CURLOPT_URL => JIRA_URL . '/rest/api/latest/' . $resource,

你的真实地址,以及写2 ,而不是latest ,即:

CURLOPT_URL=>'http://localhost/rest/api/2/issue/',

试试这个,让我知道它是如何去,祝你好运!

编辑

尝试改变:

CURLOPT_POST => 1,

至:

CURL_POST=>true,
CURLOPT_VERBOSE=>1,

顺便说一句,这里是你的JIRA服务器? 你不是说过它托管? localhost:8080如果吉拉安装在本地才会工作。 如果是这样,请尝试使用浏览器中打开http://localhost:8084/rest/api/2/issue/

编辑2

确保Allow Remote API Calls下管理>常规配置接通。

更新的问题:

该URL应指向即将被更新的问题,即:

http://localhost/rest/api/2/issue/TEST-31

并且数据应该是和以前一样,意思是:

$new_issue = array(
    'fields' => array(
        'project' => array('key' => 'DOTNET'),
        'summary' => 'Test via REST',
        'description' => 'Description of issue goes here.',
        'issuetype' => array('name' => 'Task')
     )
);

就像你写的,当你试图创建一个问题。 你可以找到这里的怎么做一些简单的例子。

编辑3

你确定你有正确的JIRA地址? 尝试重新打开浏览器并前往网址,并将它与这个例子 。 如果页面无法显示,你必须联系吉拉的支持 ,并要求他们怎么就不能访问托管吉拉远程API。



Answer 2:

editmeta应仅用于从一个问题OBTAIN元数据。

要更新的一个问题,你必须使用问题的方法。

你可以在这里查看吉拉API细节: https://docs.atlassian.com/jira/REST/cloud/#api/2/



文章来源: Updating a jira issue with the rest api. NOT soap
标签: php rest curl jira