Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,559,044
Community Members
 
Community Events
184
Community Groups

JIRA REST API authentication from Confluence

Edited

In order to create issues in JIRA from a Confluence page I want to use JIRA's REST API. I wonder which is the best way to pass credentials and make authentication.

I have solved all connection issues except the authentication which I am using a fixed user and password inserted on Authorisation Header. I wanted to be able to pass the context user on the Confluence page.

Thank you for your help.

Best regards,
Ricardo Figueiredo

1 answer

0 votes
Lucas Rodrigues de Oliveira
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 Leaders.
Jun 06, 2019

Hi Ricardo,

 

You can use a script runner to get the current user and create a basic authentication :

import com.atlassian.confluence.user.AuthenticatedUserThreadLocal

currentUser = AuthenticatedUserThreadLocal.get()
curl -u username:password -X GET -H "Content-Type: application/json" http://localhost:8080/rest/api/2/issue/createmeta

https://developer.atlassian.com/server/jira/platform/basic-authentication/

Hi Lucas,

I'm sorry for the delay on my feedback. Meanwhile I followed through with the Basic Authentication. Later on I refactor to use the ApplicatinLinkService. Someting like this:

ApplicationLinkService applicationLinkService = ComponentLocator.getComponent(ApplicationLinkService.class);
ApplicationLink jiraLink = applicationLinkService.getPrimaryApplicationLink(JiraApplicationType.class);
ApplicationLinkRequestFactory requestFactory = jiraLink.createAuthenticatedRequestFactory();
ApplicationLinkRequest request = requestFactory.createRequest(Request.MethodType.POST, "/rest/api/2/issue");

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events