本文整理汇总了Java中io.plaidapp.data.api.AuthInterceptor类的典型用法代码示例。如果您正苦于以下问题:Java AuthInterceptor类的具体用法?Java AuthInterceptor怎么用?Java AuthInterceptor使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AuthInterceptor类属于io.plaidapp.data.api包,在下文中一共展示了AuthInterceptor类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createApi
import io.plaidapp.data.api.AuthInterceptor; //导入依赖的package包/类
private void createApi() {
final OkHttpClient client = new OkHttpClient.Builder()
.addInterceptor(new AuthInterceptor(getAccessToken()))
.build();
api = new Retrofit.Builder()
.baseUrl(DribbbleService.ENDPOINT)
.client(client)
.addConverterFactory(
GsonConverterFactory.create(
new GsonBuilder()
.setDateFormat(DribbbleService.DATE_FORMAT)
.create()))
.build()
.create((DribbbleService.class));
}
示例2: createProductHuntApi
import io.plaidapp.data.api.AuthInterceptor; //导入依赖的package包/类
private void createProductHuntApi() {
final OkHttpClient client = new OkHttpClient.Builder()
.addInterceptor(new AuthInterceptor(BuildConfig.PROCUCT_HUNT_DEVELOPER_TOKEN))
.build();
productHuntApi = new Retrofit.Builder()
.baseUrl(ProductHuntService.ENDPOINT)
.client(client)
.addConverterFactory(GsonConverterFactory.create())
.build()
.create(ProductHuntService.class);
}
示例3: createApi
import io.plaidapp.data.api.AuthInterceptor; //导入依赖的package包/类
private void createApi() {
final OkHttpClient client = new OkHttpClient.Builder()
.addInterceptor(new AuthInterceptor(getAccessToken()))
.build();
final Gson gson = new GsonBuilder()
.setDateFormat(DribbbleService.DATE_FORMAT)
.create();
api = new Retrofit.Builder()
.baseUrl(DribbbleService.ENDPOINT)
.client(client)
.addConverterFactory(new DenvelopingConverter(gson))
.addConverterFactory(GsonConverterFactory.create(gson))
.build()
.create((DribbbleService.class));
}
示例4: createProductHuntApi
import io.plaidapp.data.api.AuthInterceptor; //导入依赖的package包/类
private void createProductHuntApi() {
final OkHttpClient client = new OkHttpClient.Builder()
.addInterceptor(new AuthInterceptor(BuildConfig.PROCUCT_HUNT_DEVELOPER_TOKEN))
.build();
final Gson gson = new Gson();
productHuntApi = new Retrofit.Builder()
.baseUrl(ProductHuntService.ENDPOINT)
.client(client)
.addConverterFactory(new DenvelopingConverter(gson))
.addConverterFactory(GsonConverterFactory.create(gson))
.build()
.create(ProductHuntService.class);
}