Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Conflicts:
	MVC4/PersonaMVC4Example/Controllers/PersonaController.cs
  • Loading branch information
rmbrunet committed Jan 29, 2013
2 parents d8c4abb + 15764f9 commit 15c9d6c
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 1 deletion.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion MVC4/PersonaMVC4Example/Controllers/PersonaController.cs
Expand Up @@ -32,7 +32,7 @@ public async Task<HttpResponseMessage> Login([FromBody] string assertion)
var content = new FormUrlEncodedContent( var content = new FormUrlEncodedContent(
new Dictionary<string, string> { new Dictionary<string, string> {
{ "assertion", assertion }, { "assertion", assertion },
{ "audience", HttpContext.Current.Request.Url.Host }, { "audience", Request.RequestUri.Host },
} }
); );
var result = await client.PostAsync("https://verifier.login.persona.org/verify", content); var result = await client.PostAsync("https://verifier.login.persona.org/verify", content);
Expand Down

0 comments on commit 15c9d6c

Please sign in to comment.