I am writing a groovy script which will login to a confluence instance and create pages. Can I login to confluence using the same session of Jira i.e. I do not want to hardcode passwords in any script.
Community moderators have prevented the ability to post new answers.
Hi,
you can login only if you use something like single sign on
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You might take a look at crowd.
This provides Single Sign On for the Atlassian stack and that might help you out.
Best regards,
Peter
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for replying
Both the Jira and conflunce are using crowd but I am using the remote API from my groovy script to connect to confluence and create a page.
Something like this
def locator = new ConfluenceSoapServiceServiceLocator()
def service = locator.getConfluenceserviceV2(new URL("http://localhost:8090/rpc/soap-axis/confluenceservice-v2"))
def token = service.login("user", "password")
I dont want to use the login method but want to use , say the jira token instead
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That's over my head, I can't really help you there.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.