🎨 #3516【公众号】修正代理认证请求头设置错误的问题

This commit is contained in:
Lyx Fly 2025-03-03 15:43:38 +08:00 committed by GitHub
parent 404102a4c8
commit 1f0dbcc2aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -50,12 +50,12 @@ public class WxMpServiceOkHttpImpl extends BaseWxMpServiceImpl<OkHttpClient, OkH
clientBuilder.proxy(getRequestHttpProxy().getProxy());
//设置授权
clientBuilder.authenticator(new Authenticator() {
clientBuilder.proxyAuthenticator(new Authenticator() {
@Override
public Request authenticate(Route route, Response response) throws IOException {
String credential = Credentials.basic(httpProxy.getProxyUsername(), httpProxy.getProxyPassword());
return response.request().newBuilder()
.header("Authorization", credential)
.header("Proxy-Authorization", credential)
.build();
}
});