зеркало из https://github.com/aspnet/MusicStore.git
React to breaking changes in antiforgery
This commit is contained in:
Родитель
05dcc22da7
Коммит
9b9fd5ff00
|
@ -9,7 +9,7 @@
|
||||||
public string GetAntiXsrfToken()
|
public string GetAntiXsrfToken()
|
||||||
{
|
{
|
||||||
var tokens = Xsrf.GetTokens(Context);
|
var tokens = Xsrf.GetTokens(Context);
|
||||||
return tokens.CookieToken + ":" + tokens.FormToken;
|
return tokens.CookieToken + ":" + tokens.RequestToken;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -180,7 +180,7 @@ namespace MusicStore.Controllers
|
||||||
// Header initialization for AntiForgery
|
// Header initialization for AntiForgery
|
||||||
var headers = new KeyValuePair<string, StringValues>(
|
var headers = new KeyValuePair<string, StringValues>(
|
||||||
"RequestVerificationToken",
|
"RequestVerificationToken",
|
||||||
new string[] { tokens.CookieToken + ":" + tokens.FormToken });
|
new string[] { tokens.CookieToken + ":" + tokens.RequestToken });
|
||||||
httpContext.Request.Headers.Add(headers);
|
httpContext.Request.Headers.Add(headers);
|
||||||
|
|
||||||
// Cotroller initialization
|
// Cotroller initialization
|
||||||
|
|
Загрузка…
Ссылка в новой задаче