Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

api jira php

Guy Roger KAMGUE FEUSSI
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
July 24, 2018

hello,

 

 i want to use the api of my jira to export all the ticket on the file Excel .csv

 

 

this is my code :

$username = '.........';

$password = '.........

$url = 'https://................................';

$curl = curl_init();

curl_setopt($curl, CURLOPT_USERPWD, "$username:$password");

curl_setopt($curl, CURLOPT_URL, $url);

curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);

curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);

curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0);

curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 0);

$issue_list = (curl_exec($curl));

echo $issue_list;

i need your help,

 

thanx you :) :)

0 answers

Suggest an answer

Log in or Sign up to answer