Add cookies to retrofit 2 request

Issue I need to add cookies with retrofit 2.0. If i understand correct, cookies – the same as headers. this cookies must be added: private HashMap<String, String> cookies = new HashMap(); cookies.put(“sessionid”, “sessionId”); cookies.put(“token”, “token”); this one work with Jsoup

Continue reading