Subject: | Broken synopsis |
The synopsis uses:
$c->authenticate({ realm => "example" });
but authenticate() does not look in that first arg for the realm, as far
as I can tell. Its signature is ({userinfo}, realm). So what *actually*
worked for me is:
$c->authenticate({}, "example");