Internet Explorer 11 replaces Authorization header

前端 未结 6 2030
北荒
北荒 2020-12-05 02:09

What would cause Internet Explorer to replace the HTTP header

Authorization : Bearer

with

Authorizat

6条回答
  •  独厮守ぢ
    2020-12-05 02:53

    We had a problem where Internet Explorer was caching credentials. We could fix the problem by using the following script:

    document.execCommand('ClearAuthenticationCache', 'false');
    

    see: Wikipedia

提交回复
热议问题