毕加索用HTTP帖子加载图片

问题描述 投票:4回答:1

我的API为每个HTTP请求都有一些验证机制。其中一个端点具有使用HTTP post方法加载图像的功能。 post请求体将包含一个从服务器端验证的JSON对象。

为此我需要在http post请求体上包含这样的JSON。

{
    "session_id": "someId",
    "image_id": "some_id"
}

我怎么能和毕加索一起做这件事?

android json http-post picasso image-loading
1个回答
6
投票

我从杰克逊·加拉莱先生的提示中得到了解决方案。

创建一个Okhttp请求拦截器

private static class PicassoInterceptor implements Interceptor {

    @Override
    public Response intercept(Chain chain) throws IOException {

        final MediaType JSON
                = MediaType.parse("application/json; charset=utf-8");
        Map<String, String> map = new HashMap<String, String>();
        map.put("session_id", session_id);
        map.put("image", image);
        String requestJsonBody = new Gson().toJson(map);
        RequestBody body = RequestBody.create(JSON, requestStringBody);
        final Request original = chain.request();
        final Request.Builder requestBuilder = original.newBuilder()
                .url(url)
                .post(body);
        return chain.proceed(requestBuilder.build());
    }
}

创建一个Okhttp客户端添加此拦截器

OkHttpClient okHttpClient = new OkHttpClient();
okHttpClient.interceptors().add(new PicassoInterceptor());

使用此okhttp客户端创建Dowloader

OkHttpDownloader = downloader = new OkHttpDownloader(okHttpClient)

使用此下载程序构建Picasso

Picasso picasso = new Picasso.Builder(context).downloader(downloader ).build(); 
© www.soinside.com 2019 - 2024. All rights reserved.