Hi,
I'm created an application that runs on Linux, automatically generate content and upload it to wiki via REST API using curl library.
In order to connect and upload the content, the users have to provide their password - each time they runs the application - something that I want to avoid.
In addition, I prefer not to manage the users password in anyway in my application.
I've read about the available authentication methods and found that there is a way to authenticate using the long lived cookie named "seraph.confluence".
https://confluence.atlassian.com/doc/confluence-cookies-160794071.html
however, it seems that this option is only available when using modern browsers that runs javascript code.
Is there any way to get the seraph.confluence cookie and use it when running w/ curl based application?
Thanks a lot
AVi