зеркало из 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()
|
||||
{
|
||||
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
|
||||
var headers = new KeyValuePair<string, StringValues>(
|
||||
"RequestVerificationToken",
|
||||
new string[] { tokens.CookieToken + ":" + tokens.FormToken });
|
||||
new string[] { tokens.CookieToken + ":" + tokens.RequestToken });
|
||||
httpContext.Request.Headers.Add(headers);
|
||||
|
||||
// Cotroller initialization
|
||||
|
|
Загрузка…
Ссылка в новой задаче