SimpleInterceptor
SimpleInterceptor 是Android OkHttp客户端的的拦截接口工具,为的是方便测试或开发,快速查找问题。
环境要求
- Android 4.1+
- OkHttp 3.x or 4.x
- androidx
git地址
github地址 :https://github.com/smartbackme/SimpleInterceptor
国内访问地址: https://gitee.com/dileber/SimpleInterceptor
如果觉得不错 github 给个星
警告:
使用此拦截器时生成和存储的数据可能包含敏感信息,如授权或Cookie头,以及请求和响应主体的内容。
由此,其只能用于调试过程,不可发布到线上
配置
project : build.gradle
buildscript {
repositories {
maven { url 'https://www.jitpack.io' }
}
版本于okhttp关联:
如果app 集成的是okhttp3 3.+版本那么请选用 3.0版本代码
如果app 集成的是okhttp3 4.+版本那么请选用 4.0版本代码
okhttp3 3.+
dependencies {
debugImplementation 'com.github.smartbackme.SimpleInterceptor:simpleinterceptor-debug:3.0'
releaseImplementation 'com.github.smartbackme.SimpleInterceptor:simpleinterceptor-release:3.0'
}
or
okhttp3 4.+
dependencies {
debugImplementation 'com.github.smartbackme.SimpleInterceptor:simpleinterceptor-debug:4.0'
releaseImplementation 'com.github.smartbackme.SimpleInterceptor:simpleinterceptor-release:4.0'
}
使用:
OkHttpClient.Builder()
.addInterceptor(SimpleInterceptor(context))
.build()