You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
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)
@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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.