I was looking to see if, given a user's username and password, a request could be made to the confluence API that will verify whether or not the user's username and password combination is valid and return a value based upon that.
Is there any such endpoint/protocol?
I would suggest solving the problem differently, and bringing up SSO using an identity manager. Your secondary application can then just query the identity manager.
Unfortunately this ended up being the solution. Although I did not end up using SSO, I was able to solve the problem by refactoring the workflow a bit. After providing authentication credentials my application attempts a GET request of some data from the Confluence instance, which will 200 if the credentials are valid or give a specific error if invalid. Thanks for the help!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi
Not sure what you want to do but you can do any REST Call that reauired authentication. If it returned http 401 it means that password/ username are wrong.
I would use this call.
https://docs.atlassian.com/ConfluenceServer/rest/7.18.3/#user-getCurrent
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
While I did not ultimately go with this solution to resolve the issue, I was able to utilize getCurrent elsewhere in the process. Thank you for this reference!
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.