如果我使用承载令牌配置了属性Authorization,那么InvokeHTTP会将该头发送到重定向的URL吗?
我在文档中找不到任何关于它的内容。我似乎也不能……
简短的回答是否定的,因为OkHttp 带子 Authorization 重定向 :
Authorization
// When redirecting across hosts, drop all authentication headers. This // is potentially annoying to the application layer since they have no // way to retain them. if (!sameConnection(userResponse, url)) { requestBuilder.removeHeader("Authorization"); }
我们知道这要归功于 https://stackoverflow.com/a/52285990/204052 。