Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SAML - Get the Service Provider Certificate #1886

Open
misilot opened this issue Dec 4, 2024 · 1 comment
Open

SAML - Get the Service Provider Certificate #1886

misilot opened this issue Dec 4, 2024 · 1 comment

Comments

@misilot
Copy link

misilot commented Dec 4, 2024

Hello,

Is there a way to expose the SAML SP Certificate via the metadata? That way I can register it with our Shibboleth server?

Thanks!

@Yukaii
Copy link
Member

Yukaii commented Mar 20, 2025

Yes, our CodiMD exposes the SAML SP certificate through the metadata endpoint. You can access it at ⁠https://[our-codimd-domain]/auth/saml/metadata and use this URL to register our service with your Shibboleth IdP server. The metadata XML contains all the necessary information, including our SP certificate.

samlAuth.get('/auth/saml/metadata', function (req, res) {
res.type('application/xml')
res.send(passport._strategy('saml').generateServiceProviderMetadata())
})

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants