You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SAML errors are usually "nested" ("Responder -> RequestDenied" for instance,
216
+
means that the responder in this transaction (the IdP) denied the login
217
+
request). For proper error message generation, both levels are needed.
218
+
219
+
=head2name
197
220
198
221
Returns the CN attribute, if provided.
199
222
200
223
=cut
201
224
202
225
subname {
203
-
my($self) = @_;
204
-
return$self->attributes->{CN}->[0];
226
+
my$self = shift;
227
+
return$self->attributes->{CN}[0];
205
228
}
206
229
207
230
=head2nameid
@@ -296,4 +319,17 @@ sub valid {
296
319
return 1;
297
320
}
298
321
322
+
=head2success
323
+
324
+
Returns true if the response status is a success, returns false otherwise.
325
+
In case the assertion isn't successfull, the L</response_status> and L</response_substatus> calls can be use to see why the assertion wasn't successful.
0 commit comments