We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am trying to parse SP SAMLrequest
app.post('/saml2/login', async (req, res) => { try { // console.log(req.body.SAMLRequest) const {requestData} = await idp.parseLoginRequest(sp, 'post', req ); console.log(requestData) const user = { email: '[email protected]' }; const { context, entityEndpoint } = await idp.createLoginResponse(sp, null, saml.Constants.wording.binding.post, user, createTemplateCallback(idp, sp, user.email)); res.status(200).send({ samlResponse: context, entityEndpoint }) } catch (e) { console.log(e) res.status(500).send() } })
but requestData contain no data. I can't find no documentation on how to create SAMLresponce on SAMLrequest.
anyone can help?
The text was updated successfully, but these errors were encountered:
@tngan any update on this. i'm facing the same issue
Sorry, something went wrong.
No branches or pull requests
I am trying to parse SP SAMLrequest
but requestData contain no data. I can't find no documentation on how to create SAMLresponce on SAMLrequest.
anyone can help?
The text was updated successfully, but these errors were encountered: