forked from lix-project/hydra
Fix audience URL
This commit is contained in:
parent
1db9381473
commit
486a844866
|
@ -75,7 +75,7 @@ sub persona_login :Path('/persona-login') Args(0) {
|
||||||
my $response = $ua->post(
|
my $response = $ua->post(
|
||||||
'https://verifier.login.persona.org/verify',
|
'https://verifier.login.persona.org/verify',
|
||||||
{ assertion => $assertion,
|
{ assertion => $assertion,
|
||||||
audience => "http://localhost:3000/"
|
audience => $c->uri_for('/')
|
||||||
});
|
});
|
||||||
error($c, "Did not get a response from Persona.") unless $response->is_success;
|
error($c, "Did not get a response from Persona.") unless $response->is_success;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue