本文整理汇总了Java中com.squareup.okhttp.OkHttpClient.setCookieHandler方法的典型用法代码示例。如果您正苦于以下问题:Java OkHttpClient.setCookieHandler方法的具体用法?Java OkHttpClient.setCookieHandler怎么用?Java OkHttpClient.setCookieHandler使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.squareup.okhttp.OkHttpClient
的用法示例。
在下文中一共展示了OkHttpClient.setCookieHandler方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getHttpClient
import com.squareup.okhttp.OkHttpClient; //导入方法依赖的package包/类
/**
* @param url
* @return
*/
private OkHttpClient getHttpClient(String url) {
Log.i(TAG, "getHttpClient url = " + url);
if (StringUtil.isNotEmpty(url, true) == false) {
Log.e(TAG, "getHttpClient StringUtil.isNotEmpty(url, true) == false >> return null;");
return null;
}
OkHttpClient client = new OkHttpClient();
client.setCookieHandler(new HttpHead());
client.setConnectTimeout(15, TimeUnit.SECONDS);
client.setWriteTimeout(10, TimeUnit.SECONDS);
client.setReadTimeout(10, TimeUnit.SECONDS);
//添加信任https证书,用于自签名,不需要可删除
if (url.startsWith(StringUtil.URL_PREFIXs) && socketFactory != null) {
client.setSslSocketFactory(socketFactory);
}
return client;
}
示例2: getHttpClient
import com.squareup.okhttp.OkHttpClient; //导入方法依赖的package包/类
/**
* @param url
* @return
*/
private OkHttpClient getHttpClient(String url) {
Log.i(TAG, "getHttpClient url = " + url);
if (StringUtil.isNotEmpty(url, true) == false) {
Log.e(TAG, "getHttpClient StringUtil.isNotEmpty(url, true) == false >> return null;");
return null;
}
OkHttpClient client = new OkHttpClient();
client.setCookieHandler(new HttpHead());
client.setConnectTimeout(15, TimeUnit.SECONDS);
client.setWriteTimeout(10, TimeUnit.SECONDS);
client.setReadTimeout(10, TimeUnit.SECONDS);
return client;
}
示例3: post
import com.squareup.okhttp.OkHttpClient; //导入方法依赖的package包/类
Call post(Callback callback) throws IOException {
OkHttpClient client = getUnsafeOkHttpClient();
CookieManager cookieManager = new CookieManager();
cookieManager.setCookiePolicy(CookiePolicy.ACCEPT_ALL);
client.setCookieHandler(cookieManager);
RequestBody requestBody = new FormEncodingBuilder()
.add("user_id", NetId)
.add("user_password", password)
.build();
Request request = new Request.Builder()
.url("https://studentmaintenance.webapps.snu.edu.in/students/public/studentslist/studentslist/loginauth")
.post(requestBody)
.build();
Call call = client.newCall(request);
call.enqueue(callback);
return call;
}
示例4: OkHttpClientManager
import com.squareup.okhttp.OkHttpClient; //导入方法依赖的package包/类
private OkHttpClientManager() {
mOkHttpClient = new OkHttpClient();
//cookie enabled
mOkHttpClient.setCookieHandler(new CookieManager(null, CookiePolicy.ACCEPT_ORIGINAL_SERVER));
mDelivery = new Handler(Looper.getMainLooper());
mGson = new Gson();
}
示例5: okHttp2Client
import com.squareup.okhttp.OkHttpClient; //导入方法依赖的package包/类
@Bean
@ConditionalOnMissingBean
public OkHttpClient okHttp2Client() throws IOException {
OkHttpClient okHttpClient = new OkHttpClient();
if (properties.getCache().getMode() != OkHttpProperties.Cache.Mode.NONE) {
okHttpClient.setCache(okHttp2Cache());
}
if (cookieHandler != null) {
okHttpClient.setCookieHandler(cookieHandler);
}
OkHttpProperties.Timeout connectTimeout = properties.getConnectTimeout();
if (connectTimeout != null) {
okHttpClient.setConnectTimeout(connectTimeout.getValue(), connectTimeout.getUnit());
}
OkHttpProperties.Timeout readTimeout = properties.getReadTimeout();
if (readTimeout != null) {
okHttpClient.setReadTimeout(readTimeout.getValue(), readTimeout.getUnit());
}
OkHttpProperties.Timeout writeTimeout = properties.getWriteTimeout();
if (writeTimeout != null) {
okHttpClient.setWriteTimeout(writeTimeout.getValue(), writeTimeout.getUnit());
}
if (dns != null) {
okHttpClient.setDns(dns);
}
okHttpClient.setFollowRedirects(properties.isFollowRedirects());
okHttpClient.setFollowSslRedirects(properties.isFollowSslRedirects());
okHttpClient.setRetryOnConnectionFailure(properties.isRetryOnConnectionFailure());
if (applicationInterceptors != null && !applicationInterceptors.isEmpty()) {
okHttpClient.interceptors().addAll(applicationInterceptors);
}
if (networkInterceptors != null && !networkInterceptors.isEmpty()) {
okHttpClient.networkInterceptors().addAll(networkInterceptors);
}
if (configurers != null) {
for (Configurer<OkHttpClient> configurer : configurers) {
configurer.configure(okHttpClient);
}
}
return okHttpClient;
}