Important Update Effective February 1, 2024!
Due to recent changes in Jira and Confluence, we've made the tough decision to discontinue the OpenID Connect (OIDC)/OAuth app and no longer provide new versions for the newest Jira/Confluence releases as of January 31, 2024.
This is due to some necessary components no longer shipping with Jira/Confluence, which would require some extensive rewrites of the OIDC App.
Important Update! This app will be discontinued soon!
Due to recent changes in Jira, which no longer ships with some components required for our Read Receipts app to run, we've made the tough decision to discontinue the app, as of Februar 5, 2025.
Important Update! This app will be discontinued soon!
We've made the tough business decision to discontinue the app, as of January 11, 2025.
Disable password login with nosso-parameter
By default, the username/password login page can be accessed by adding the parameter nosso to the appropriate login page URL:
- Jira: https://<baseurl>/login.jsp?nosso
- Confluence: https://<baseurl>/login.action?nosso
- Bitbucket: https://<baseurl>/login?nosso
- Bamboo 5: https://<baseurl>/userlogin!default.action?nosso
- Bamboo 6: https://<baseurl>/userlogin!doDefault.action?nosso
This can be disabled via the app's configuration redirection tab:
This setting can be changed using a REST endpoint to allow login if the SSO fails for any reason:
Method | URL | Usage | cURL example |
---|---|---|---|
GET | https://<baseUrl>/rest/samlsso-admin/1.0/nosso | check status | curl -u adminuser:password -X GET https://<baseUrl>/rest/samlsso-admin/1.0/nosso |
PUT | https://<baseUrl>/rest/samlsso-admin/1.0/nosso/on | enable password login | curl -u adminuser:password -X PUT https://<baseUrl>/rest/samlsso-admin/1.0/nosso/on |
PUT | https://<baseUrl>/rest/samlsso-admin/1.0/nosso/off | disable password login | curl -u adminuser:password -X PUT https://<baseUrl>/rest/samlsso-admin/1.0/nosso/off |