asp.net mvc 4 AntiForgery 提供的防偽標記適用於使用者“”,但目前使用者為“XX” 問題處理記錄

來源:互聯網
上載者:User

標籤:

情景:   某頁面未登入下可以訪問,但具體操作時發現未登入就彈出登入窗,待完成登入後繼續操作。  當登入成功,前端繼續操作(post後端介面)時發現以下錯誤:     提供的防偽標記適用於使用者“”,但目前使用者為“XX”。  (登入以及具體頁面操作都是ajax post) 看到這個錯誤後先是這麼處理:                       //登入代碼。。。                   string oldCtoken = HttpContext.Request.Cookies["__RequestVerificationToken"].Value;                string ctoken;                string ftoken;                AntiForgery.GetTokens(oldCtoken, out ctoken, out ftoken); //產生新token                HttpContext.Request.Cookies.Set( new HttpCookie ("__RequestVerificationToken", ctoken));                return Content(ftoken); //返回,前端收到後設定 hidden token但是發現雖然使用了新的cookie token 、 form token ,但是還是提示使用者不對。接著研究源碼。。。通過研究源碼發現:產生token的時候 會取目前使用者identity。 (之前有遇到登入後,identity 不會重新整理,所以解決方案很明顯了)  string[] roles = new string [] { "Role1", "Role2" }; //具體情況設定                HttpContext.User =                   new GenericPrincipal (new GenericIdentity( "XX"), roles);  //使用者名稱具體設定                  //這樣也是可以的                //ftoken = AntiForgery.GetHtml().ToString();                //Regex r = new Regex(@"value=""([^""]+)");                //var m = r.Match(ftoken);                //return Content(m.Groups[1].Value);

asp.net mvc 4 AntiForgery 提供的防偽標記適用於使用者“”,但目前使用者為“XX” 問題處理記錄

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.