| | |
| | | import com.qianwen.core.tool.utils.Exceptions; |
| | | import com.qianwen.core.tool.utils.Holder; |
| | | |
| | | /* loaded from: blade-starter-http-9.3.0.0-SNAPSHOT.jar:org/springblade/core/http/HttpRequest.class */ |
| | | public class HttpRequest { |
| | | private static final String DEFAULT_USER_AGENT = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36"; |
| | | private static final MediaType APPLICATION_JSON = MediaType.parse("application/json;charset=UTF-8"); |
| | |
| | | private CookieJar cookieJar; |
| | | @Nullable |
| | | private EventListener eventListener; |
| | | private final List<Interceptor> interceptors = new ArrayList(); |
| | | private final List<Interceptor> interceptors = new ArrayList<>(); |
| | | @Nullable |
| | | private Authenticator authenticator; |
| | | @Nullable |