public class LoggingInterceptor implements Interceptor { @Override public Response intercept(Chain chain) throws IOException { Request request = chain.request(); HttpUrl url =request.url().newBuilder() .addQueryParameter("source","android") .build(); return chain.proceed(request); } }