久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

  • <small id='YLqQK'></small><noframes id='YLqQK'>

  • <tfoot id='YLqQK'></tfoot>
      <bdo id='YLqQK'></bdo><ul id='YLqQK'></ul>
    <legend id='YLqQK'><style id='YLqQK'><dir id='YLqQK'><q id='YLqQK'></q></dir></style></legend>

  • <i id='YLqQK'><tr id='YLqQK'><dt id='YLqQK'><q id='YLqQK'><span id='YLqQK'><b id='YLqQK'><form id='YLqQK'><ins id='YLqQK'></ins><ul id='YLqQK'></ul><sub id='YLqQK'></sub></form><legend id='YLqQK'></legend><bdo id='YLqQK'><pre id='YLqQK'><center id='YLqQK'></center></pre></bdo></b><th id='YLqQK'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='YLqQK'><tfoot id='YLqQK'></tfoot><dl id='YLqQK'><fieldset id='YLqQK'></fieldset></dl></div>

        使用 AspNet.Security.OpenIdConnect.Server (ASP.NET vNext) 的

        Custom Lifetime Validation With AspNet.Security.OpenIdConnect.Server (ASP.NET vNext)(使用 AspNet.Security.OpenIdConnect.Server (ASP.NET vNext) 的自定義生命周期驗(yàn)證)
      1. <legend id='3hz5U'><style id='3hz5U'><dir id='3hz5U'><q id='3hz5U'></q></dir></style></legend>

            <small id='3hz5U'></small><noframes id='3hz5U'>

                <bdo id='3hz5U'></bdo><ul id='3hz5U'></ul>
                • <i id='3hz5U'><tr id='3hz5U'><dt id='3hz5U'><q id='3hz5U'><span id='3hz5U'><b id='3hz5U'><form id='3hz5U'><ins id='3hz5U'></ins><ul id='3hz5U'></ul><sub id='3hz5U'></sub></form><legend id='3hz5U'></legend><bdo id='3hz5U'><pre id='3hz5U'><center id='3hz5U'></center></pre></bdo></b><th id='3hz5U'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='3hz5U'><tfoot id='3hz5U'></tfoot><dl id='3hz5U'><fieldset id='3hz5U'></fieldset></dl></div>
                    <tbody id='3hz5U'></tbody>
                  <tfoot id='3hz5U'></tfoot>
                  本文介紹了使用 AspNet.Security.OpenIdConnect.Server (ASP.NET vNext) 的自定義生命周期驗(yàn)證的處理方法,對(duì)大家解決問(wèn)題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧!

                  問(wèn)題描述

                  限時(shí)送ChatGPT賬號(hào)..

                  我正在使用 Visual Studio 2015 Enterprise Update 1 和 ASP.NET vNext rc1-update1 來(lái)發(fā)布和使用 JWT 令牌,如 這里.

                  I am using Visual Studio 2015 Enterprise Update 1 and ASP.NET vNext rc1-update1 to issue and consume JWT tokens as described here.

                  在我們的實(shí)現(xiàn)中,我們希望控制令牌生命周期驗(yàn)證.

                  In our implementation we want to control token lifetime validation.

                  我們嘗試了幾種方法,所有這些方法都有不良副作用.例如,在一次嘗試中,我們?cè)?Configure 方法中接管了 TokenValidationParameters.TokenValidationParameters.LifetimeValidator 事件:

                  We tried several approaches, all of which had undesirable side effects. For example in one attempt we took over the TokenValidationParameters.TokenValidationParameters.LifetimeValidator event in the Configure method:

                  app.UseJwtBearerAuthentication
                  (
                      options => 
                      {
                          options.TokenValidationParameters = new TokenValidationParameters()
                          {
                              LifetimeValidator = (DateTime? notBefore, DateTime? expires, SecurityToken securityToken, TokenValidationParameters validationParameters) =>
                              {
                                  // Pretend to do custom validation
                                  return false;
                              }
                          };
                      }
                  );
                  

                  該事件導(dǎo)致驗(yàn)證失敗,但客戶端收到 500 錯(cuò)誤,而我們希望返回 400 系列錯(cuò)誤和一個(gè)小負(fù)載.

                  That event causes validation to fail as we'd like but the client receives a 500 error whereas we would like to return a 400-series error and a small payload instead.

                  在另一次嘗試中,我們嘗試了 TokenValidationParameters.Events 的各種實(shí)現(xiàn),例如檢查 ValidatedToken 事件中的聲明,但發(fā)現(xiàn)我們無(wú)法阻止中間件調(diào)用控制器操作,除非引發(fā)異常,導(dǎo)致我們回到 500 錯(cuò)誤問(wèn)題.

                  In another attempt we tried various implementations of TokenValidationParameters.Events, such as inspecting claims in the ValidatedToken event but found we were unable to prevent the middleware from invoking the controller action short of throwing an exception which got us back to the 500 error problem.

                  所以我的問(wèn)題是:

                  • 使用 OIDC 接管生命周期驗(yàn)證的最佳做法是什么?

                  • What what is the best practices for taking over lifetime validation with OIDC?

                  我們是否可以強(qiáng)制 OIDC 不在令牌中包含某些生命周期聲明,例如nbf",因?yàn)槲覀儫o(wú)論如何都不需要它們?

                  Can we force OIDC not to include certain lifetime claims in the token like "nbf" since we won't need them anyway?

                  推薦答案

                  此錯(cuò)誤已在 ASP.NET Core RC2 中修復(fù).不再需要此答案中描述的解決方法.

                  這是一個(gè)已知錯(cuò)誤.遺憾的是,您可以在 beta8 中使用的解決方法 不再有效 在 RC1 中.

                  It's a known bug. Sadly, the workaround you could use in beta8 no longer works in RC1.

                  您唯一的選擇是編寫(xiě)一個(gè)捕獲異常的中間件,以防止服務(wù)器返回 500 響應(yīng).當(dāng)然,它很丑陋,并且可能會(huì)隱藏重要的異常,但它是唯一適用于 RC1 的已知解決方法.

                  Your only option is to write a middleware catching the exception to prevent the server from returning a 500 response. Of course, it's ugly and will potentially hide important exceptions, but it's the only known workaround that works with RC1.

                  這是一個(gè)例子(確保在 JWT 承載中間件之前注冊(cè)它):

                  Here's an example (make sure to register it before the JWT bearer middleware):

                  app.Use(next => async context => {
                      try {
                          await next(context);
                      }
                  
                      catch {
                          // If the headers have already been sent, you can't replace the status code.
                          // In this case, throw an exception to close the connection.
                          if (context.Response.HasStarted) {
                              throw;
                          }
                  
                          context.Response.StatusCode = 401;
                      }
                  });
                  

                  這篇關(guān)于使用 AspNet.Security.OpenIdConnect.Server (ASP.NET vNext) 的自定義生命周期驗(yàn)證的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

                  【網(wǎng)站聲明】本站部分內(nèi)容來(lái)源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問(wèn)題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請(qǐng)聯(lián)系我們刪除處理,感謝您的支持!

                  相關(guān)文檔推薦

                  Deleting a directory when clicked on a hyperlink with JAvascript.ASP.NET C#(單擊帶有 JAvascript.ASP.NET C# 的超鏈接時(shí)刪除目錄)
                  asp.net listview highlight row on click(asp.net listview 在單擊時(shí)突出顯示行)
                  Calling A Button OnClick from a function(從函數(shù)調(diào)用按鈕 OnClick)
                  ASP.net C# Gridview ButtonField onclick event(ASP.net C# Gridview ButtonField onclick 事件)
                  Adding OnClick event to ASP.NET control(將 OnClick 事件添加到 ASP.NET 控件)
                  Multiple submit Button click problem?(多個(gè)提交按鈕點(diǎn)擊問(wèn)題?)
                    <tbody id='2mCCV'></tbody>
                  <legend id='2mCCV'><style id='2mCCV'><dir id='2mCCV'><q id='2mCCV'></q></dir></style></legend>

                      <bdo id='2mCCV'></bdo><ul id='2mCCV'></ul>

                    • <i id='2mCCV'><tr id='2mCCV'><dt id='2mCCV'><q id='2mCCV'><span id='2mCCV'><b id='2mCCV'><form id='2mCCV'><ins id='2mCCV'></ins><ul id='2mCCV'></ul><sub id='2mCCV'></sub></form><legend id='2mCCV'></legend><bdo id='2mCCV'><pre id='2mCCV'><center id='2mCCV'></center></pre></bdo></b><th id='2mCCV'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='2mCCV'><tfoot id='2mCCV'></tfoot><dl id='2mCCV'><fieldset id='2mCCV'></fieldset></dl></div>

                        1. <tfoot id='2mCCV'></tfoot>
                          1. <small id='2mCCV'></small><noframes id='2mCCV'>

                            主站蜘蛛池模板: 精品网站999| 亚洲激情网站 | 欧美日韩国产一区二区三区 | 免费在线看黄 | 久久久久亚洲精品 | 不卡在线一区 | 99色综合 | 99pao成人国产永久免费视频 | 国产高清免费视频 | 亚洲免费观看视频 | 日韩在线播放视频 | 黄色欧美在线 | 国产成人精品久久二区二区91 | 一区二区三区在线观看免费视频 | av永久| 日韩视频中文字幕 | 久久国产精品久久 | 三级特黄特色视频 | 国产免费一区二区三区最新6 | 午夜网站视频 | 国产精品免费在线 | 日韩1区| 国产精品99久久久久久久久久久久 | 日本天天操 | 欧美一区二区三区精品免费 | 日本亚洲一区二区 | 色综合99 | 国产精品久久久久国产a级 欧美日韩国产免费 | 欧美国产激情二区三区 | 中文字幕精品一区二区三区精品 | 久久精品亚洲欧美日韩久久 | 给我免费的视频在线观看 | 三a毛片| 中文字幕男人的天堂 | 日韩欧美在线播放 | 中文字幕在线免费视频 | www.日韩免费 | 欧美片网站免费 | 国产一级片在线观看视频 | 欧美高清一区 | 91视频在线 |