Skip to content

Instantly share code, notes, and snippets.

View megaacheyounes's full-sized avatar
turning coffee into code

Megaache Younes megaacheyounes

turning coffee into code
View GitHub Profile
@megaacheyounes
megaacheyounes / AddCookiesInterceptor.java
Created January 4, 2023 16:22 — forked from tsuharesu/AddCookiesInterceptor.java
Handle Cookies easily with Retrofit/OkHttp
/**
* This interceptor put all the Cookies in Preferences in the Request.
* Your implementation on how to get the Preferences MAY VARY.
* <p>
* Created by tsuharesu on 4/1/15.
*/
public class AddCookiesInterceptor implements Interceptor {
@Override
public Response intercept(Chain chain) throws IOException {