Retrofit2.0访问一直404

发布于 2022-09-01 23:59:41 字数 1331 浏览 14 评论 0

api访问没有问题

clipboard.png


Retrofit retrofit = new Retrofit.Builder()
                .baseUrl("http://服务器IP/SaveImg")
                .addConverterFactory(GsonConverterFactory.create())
                .client(new OkHttpClient())
                .build();
        Api imgService = retrofit.create(Api.class);

        Call<List<ImgUrl>> call = imgService.getImgUlrs("20151119");

        call.enqueue(new Callback<List<ImgUrl>>() {
            @Override
            public void onResponse(Response<List<ImgUrl>> response, Retrofit retrofit) {
                Log.d(TAG, response.code() + "");

            }

            @Override
            public void onFailure(Throwable t) {

            }
        });
    }

    public interface Api {
        @GET("/DouBanGirl")
        Call<List<ImgUrl>> getImgUlrs(@Query("date") String date);

    }

    public static class ImgUrl {
        public String date;
        public List<String> ulrs;

        public ImgUrl(String date, List<String> ulrs) {
            this.date = date;
            this.ulrs = ulrs;
        }
    }

为什么自己的访问一直是404?
小弟拜谢,这个问题困扰很久。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

花开半夏魅人心 2022-09-08 23:59:41

貌似把你的DouBanGirl前面的斜杠去了

似最初 2022-09-08 23:59:41

Retrofit2.0 beta不会自动分配线程默认在主线程里面----我是这么理解的(小心被坑)
我是rxjava +retrofit ,在网络访问的前面加个 .observeOn(Schedulers.io())就可以了

酸甜透明夹心 2022-09-08 23:59:41

/SaveImg/ 后面必须加/

情深已缘浅 2022-09-08 23:59:41

Retrofit2.0 url的斜线跟之前不一样,统一写成 SaveImg后面加/,DouBanGirl等具体请求前面去掉/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文