Add cookies to retrofit 2 request
First of all: cookie is not the same as a header. Cookie is a special HTTP header named Cookie followed by list of the pairs of keys and values (separated by “;”). Something like: Cookie: sessionid=sessionid; token=token Since you cannot set multiple Cookie headers in the same request you are not able to use two … Read more