The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

How do I authenticate with Jira to access the data with PHP

Tzim
October 15, 2019

I'm new to using Jira and PHP, I wrote some code that I think should give me the information about my profile. But I need to authenticate first. How do I authenticate myself, or can I turn authentification off entirely? (Doesn't matter because it's only running locally for now)

This is my code so far:

$curl_handle=curl_init();
curl_setopt($curl_handle, CURLOPT_URL,'http://localhost:8080/rest/api/2/user?username=JiraTest');
$query = curl_exec($curl_handle);
echo $query;

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
Fran Garcia
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
October 15, 2019

You can use basic authentication to access the API.

https://en.wikipedia.org/wiki/Basic_access_authentication