-
Notifications
You must be signed in to change notification settings - Fork 400
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
Adding attributes to the "saml:Issuer" part in the AuthnRequest #265
Comments
Not supported, but you can extend the AuthNRequest class. Accept an issuer_NQ and issuer_Format at the constructor and use them later on the render |
First of all, the context: the SAML 2.0 specification says that, if the So what is the rationale behind this request? The problem of extending the The second problem is that the current implementation of |
@pitbulk
However, within the scope of #307 I introduced a refactoring for If you agree with such a refactoring, I may follow a very similar approach for the To complete the picture: if the user does not specify any |
@pitbulk The commit is not ready for merge right now because it builds on top of other enhancements, like #321 and the anticipated refactoring of the With all of this, if one wants to customise the creation of the
Auth auth = new Auth(request, response);
auth.setAuthnRequestFactory(SpidAuthnRequest::new);
auth.login(); |
Hi @mauromol, I followed this thread but had not time yet to review all the work you are doing. |
@pitbulk this is great news, congratulations for your baby! :-) |
@pitbulk I believe this can be closed now that #321 and #352 have been merged. The requested feature can be implemented by providing an extension to See current README file for details. |
Hi, is it possible with the current implementation of this library to somehow add more attributes to the
<saml:Issuer/>
part of theAuthnRequest
because at the moment this part is generated in this way:but I would like to have something like this:
Thanks in advance.
The text was updated successfully, but these errors were encountered: