The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.
👋 Hello Community! My name is Stephanie Zhang, and I’m a product manager on the Confluence cloud team. Today, I’m excited to announce the rollout of Presenter Mode : a ...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.