I have an app that authenticates users using LDAP (Active Directory). We also use LDAP for Confluence authentication.
I'm using the REST API to integrate Confluence with our app and I'd like the API requests to be executed in the user's context. This would enforce that a user only does what he/she's allowed to do as well as make sure that new post created/updated with the API carry the user's "stamp".
It seems like the older API had a way of issuing request with token instead of basic auth (username/password) but I can't seem to find the correct way to do this now.
Is it at all possible? Would anyone have a suggestion for a different way to accomplish what I'm trying to?
One thing important to me is not to hold onto the user's password. I would pass is authentication credentials on login, directly to Confluence's API, without having to "save" it somehow to be used later on.
Thanks!
PS: Running Confluence 6.3.1
Hello @Jonathan F. Gingras
My plugin API Tokens for Confluence generates tokens that could be used in integrations w/o exposing passwords. Also, it makes actions on behalf of the user (carry the user's "stamp").
Hope this is what are you looking for
Regards, Roman
Thank you Maksym, it points me in the right direction.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Confluence REST API does not provide a way of obtaining user tokens. You can still use old xml-rpc api method calls for authentication and other actions you need.
Alternatively, in your application, you may try to login your users by sending user credentials to Confluence login page, and parsing response. You need to save "seraph.confluence" and "JSESSIONID" cookie values from response, and use them in you REST calls (just add them to cookies header of your requests). That may do the trick, but may not work in all cases.
Hope that helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Maksym,
My confluence version is 5.0.3. Please suggest that our versions supports Rest APIs or not. what is seraph.confluence and jsessionid cokkie values? How to i get those values?How to use them in rest calls? Please explain in detail.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.