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: 

Need help to read data from Confluence as I am getting unauthorized exception

Anshu Kumar
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!
June 24, 2021

Hello Team,

I am trying to read the data from the confluence by using Atlassian plugin[classpath group: 'com.github.crob1140', name: 'confluence-java-client', version: '1.0.0'], but while authenticating I am getting 401 unauthorized exception. Could you please help if any prerequisite for using below code.

task readConflunceContent {
doLast {
def userName="myId"
def password = "mypassword"
WebTarget wikiTarget = ClientBuilder.newClient().target("https://****************/confluence/");
AuthMethod basicAuth = new BasicAuth(userName, password);
ConfluenceClient client = new ConfluenceClient(wikiTarget, basicAuth);


println "****************** Getting the Content***************************"
List<Content> existingPages = client.getContent(new GetContentRequest.Builder()
.setSpaceKey("CICCAS")
.setTitle("Automatic Jenkins Job generation")
//.setExpandedProperties(new ExpandedContentProperties.Builder().addVersion().build())
.setLimit(1)
.build())

}
}

 

Thank You 

Anshu(+91 7447688544)

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Brant Schroeder
Community Champion
October 8, 2021

@Anshu Kumar Welcome the Atlassian Community

I believe that GitHub project is just using the Confluence web services which require authentication.  A 401 error means that you are not authenticated.  

TAGS
AUG Leaders

Atlassian Community Events