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;
You can use basic authentication to access the API.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.