如何在Retrofit请求里添加Cookie

 我来答
百度网友10a24bf
2017-05-06 · TA获得超过1.3万个赞
知道大有可为答主
回答量:1.3万
采纳率:95%
帮助的人:2892万
展开全部
你可以自定义一个RequestIntercaptor:
String cookieKey = ...
String cookieValue = ...

RestAdapter adapter = new RestAdapter.Builder()
.setRequestInterceptor(new RequestInterceptor() {
@Override
public void intercept(RequestFacade request) {
// assuming `cookieKey` and `cookieValue` are not null
request.addHeader("Cookie", cookieKey + "=" + cookieValue);
}
})
.setServer("http://...")
.build();

YourService service = adapter.create(YourService.class);
从服务器读取cookies再交给cookie manager管理芦返:
OkHttpClient client = new OkHttpClient();
CustomCookieManager manager = new CustomCookieManager();
client.setCookieHandler(manager);

RestAdapter adapter = new RestAdapter.Builder()
.setClient(new OkClient(client))
...
.build();
CustomeCookieManager如下:
public class CustomCookieManager extends CookieManager {

// The cookie key we're interested in.
private final String SESSION_KEY = "session-key";

/**
* Creates a new instance of this cookie manager accepting all cookies.
*/
public CustomCookieManager() {
super.setCookiePolicy(CookiePolicy.ACCEPT_ALL);
}

@Override
public void put(URI uri, Map<String, List<String>> responseHeaders) throws IOException {

super.put(uri, responseHeaders);

if (responseHeaders == null || responseHeaders.get(Constants.SET_COOKIE_KEY) == null) {
// No cookies in this response, simply return from this method.
return;
}

/碧哗慎/ Yes, we've found cookies, inspect them for the key we're looking for.
for (String possibleSessionCookieValues : responseHeaders.get(Constants.SET_COOKIE_KEY)) {

if (possibleSessionCookieValues != null) {

for (String possibleSessionCookie : possibleSessionCookieValues.split(";")) {

if (possibleSessionCookie.startsWith(SESSION_KEY) && possibleSessionCookie.contains("=")) {

// We can safely get the index 1 of the array: we know it contains
// a '悔敬=' meaning it has at least 2 values after splitting.
String session = possibleSessionCookie.split("=")[1];

// store `session` somewhere

return;
}
}
}
}
}
}
叶绿花香树深
2017-05-06 · 超过244用户采纳过TA的回答
知道小有建树答主
回答量:523
采纳率:0%
帮助的人:236万
展开全部
retrofit rxjava 怎么替换"file";filename="avatar.png 在这个简槐例子返咐坦中,我们并没有在程漏桐序中使用cookie(使用的是session),那么http cookie管理器怎么会起作用呢?这是因为在servlet/jsp规范中对于session的状态跟踪有2种方式:
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式