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,893
Community Members
 
Community Events
185
Community Groups

Unable to bypass Organisation SSO to access tests in TM4J with API

Hi Team,

 

We have issues retrieving test case related information using TM4J API. We have followed the steps from the documentation: https://docs.adaptavist.io/tm4j/server/api/v1/

 

Our JIRA application is integrated with organization’s SSO. Due to which we are not able to access tests using TM4J api’s.

Below is our sample API using Advance Rest Client/Postman:

URL: https://jira.xxxxxxx/rest/atm/1.0/testcase/{TCID}

Method: GET

Cookie:

Authorization: Basic xxxxxxx

Cookie: OBBasicAuth=fromDialog

 

While performing GET, organization’s SSO page is returned.

 

The same approach works with JIRA issues.

URL: https://jira.xxxxx/rest/api/latest/issue/{issue-id}

Method: GET

Cookie:

Authorization: Basic xxxxxxx

Cookie: OBBasicAuth=fromDialog

 

We were able to retrieve the info of issue-id in the response received.

 

Can you please let us know

  1. What cookies need to be set to bypass organization sso?
  2. Is our approach correct ?

 

 

Below is the sample java code written to retrieve info

 

HttpClient httpClient = new HttpClient();
String method = "https://jira.xxxxxxxx/rest/atm/1.0/testcase/{TCID}";
String method1 = "https://jira.xxxxxxxx/rest/api/latest/issue/{issue-id}";
GetMethod getMethod = new GetMethod(method1);
getMethod.addRequestHeader("Cookie", "OBBasicAuth=fromDialog");
getMethod.addRequestHeader("Authorization", "Basic xxxxxxxxxx");
int state = httpClient.executeMethod(getMethod);
String response = getMethod.getResponseBodyAsString();
System.out.println(response);

0 answers

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events