Saml IdP如何知道包含authnRequest的变量的名称

Saml IdP如何知道包含authnRequest的变量的名称,saml,saml-2.0,opensaml,simplesamlphp,Saml,Saml 2.0,Opensaml,Simplesamlphp,我实现了一个saml身份提供程序, 服务提供程序发送一个HTML,其中包含隐藏输入中的authnRequest,该输入具有名称,例如SAMLRequest <form id="samlRequestId" action="http://localhost:8084/IdentityProvider/SSOService" method="post"> <input type="hidden" name="RelayState" value="token" /> &

我实现了一个saml身份提供程序, 服务提供程序发送一个HTML,其中包含隐藏输入中的authnRequest,该输入具有名称,例如SAMLRequest

<form id="samlRequestId" action="http://localhost:8084/IdentityProvider/SSOService" method="post">
  <input type="hidden" name="RelayState" value="token" />
  <input type="hidden" name="SAMLRequest" value="samlRequestValue"</input> 
</form>

属性名“SAMLRequest”是SAML2.0标准的一部分。您可以在第3.4章HTTP重定向绑定中找到有关它的更多详细信息