Subject: | Attribute (cert) is required in Net::SAML2::BInding::Redirect |
The SYNOPSIS suggests
my $redirect = Net::SAML2::Binding::Redirect->new(
key => 'sign-nopw-cert.pem',
url => $sso_url,
param => 'SAMLRequest',
);
but the attribute "cert" is required in the package's Moose properties.
It should either not be required or the SYNOPSIS should state
my $redirect = Net::SAML2::Binding::Redirect->new(
key => 'sign-nopw-cert.pem',
url => $sso_url,
param => 'SAMLRequest',
cert => 'path/to/cert.ca',
);