retrofit icon indicating copy to clipboard operation
retrofit copied to clipboard

POST not work with @field annotaion

Open calidion opened this issue 2 years ago • 7 comments

What kind of issue is this?

  • [ ] Question. This issue tracker is not the place for questions. If you want to ask how to do something, or to understand why something isn't working the way you expect it to, use Stack Overflow. https://stackoverflow.com/questions/tagged/retrofit

  • [x] Bug report. If you’ve found a bug, spend the time to write a failing test. Bugs with tests get fixed. Here’s an example: https://gist.github.com/swankjesse/6608b4713ad80988cdc9

  • [ ] Feature Request. Start by telling us what problem you’re trying to solve. Often a solution already exists! Don’t send pull requests to implement new features without first getting our support. Sometimes we leave features out on purpose to keep the project small.

version 2.9.0

calidion avatar Sep 21 '23 15:09 calidion

Here's a test case showcasing that it can work: https://github.com/square/retrofit/blob/23d0461541c5596bdf2b67c70d1a7fcc8bd2b6a2/retrofit/src/test/java/retrofit2/RequestFactoryTest.java#L2608-L2621

Please supply a failing test case if you think something is broken.

JakeWharton avatar Sep 21 '23 15:09 JakeWharton

I think this simple test may be not sufficient. I have seem a lot of question on why field is not working. no one can give a working answer. I am now using okhttpclient instead.

calidion avatar Sep 21 '23 16:09 calidion

this is the code working with OkHttpClient:

        public String quota(String username , String password) {
        RequestBody formBody = new FormBody.Builder()
                .add("username", username)
                .add("password", password)
                .build();

        Request request = new Request.Builder()
                .url(BASE_URL + "user/quota")
                .post(formBody)
                .build();

        Call call = httpClient.newCall(request);
            try {
                Response response = call.execute();
                return response.body().string();
            } catch (IOException e) {
                throw new RuntimeException(e);
            }
        }

calidion avatar Sep 21 '23 16:09 calidion

this is the code not working with retrofit2:



    public Quota quota;
    OkHttpClient.Builder httpClient = new OkHttpClient.Builder();

    public void start(String username, String password) {
        Gson gson = new GsonBuilder()
                .setLenient()
                .create();

        Retrofit retrofit = new Retrofit.Builder()
                .baseUrl(BASE_URL)
                .addConverterFactory(GsonConverterFactory.create(gson))
                .client(httpClient.build())
                .build();

        APIService apiService = retrofit.create(APIService.class);

        Call<Quota> quotaCall = apiService.getQuota(username, password);
        quotaCall.enqueue(this);
    }

    @Override
    public void onResponse(Call<Quota> call, Response<Quota> response) {
        if (response.isSuccessful()) {
            quota = response.body();
        } else {
            System.out.println(response.errorBody());
        }
    }

    @Override
    public void onFailure(Call<Quota> call, Throwable t) {
        t.printStackTrace();
    }
public interface Quota {
    public String username = "";
    public int quota = 0;
    public int upload = 0;
    public int download = 0;
}
public interface APIService {
    @GET("servers")
    void getServers();

    @FormUrlEncoded
    @POST("user/quota")
    Call<Quota> getQuota(@Field("username") String username, @Field("password") String password);

}

calidion avatar Sep 21 '23 16:09 calidion

How is it not working?

JakeWharton avatar Sep 21 '23 16:09 JakeWharton

How is it not working?

I can't trace much deeper. I only know that the parameters are passed into the requester.

calidion avatar Sep 21 '23 17:09 calidion

@JakeWharton

https://github.com/Free-Web-Movement/android-base-library

this is a repository can reproduce this bug. Where OKHTTP works well and @field not .

calidion avatar Sep 22 '23 18:09 calidion

Retrofit's @FormUrlEncoded uses OkHttp's FormBody.Builder to build the body the same as your snippet does.

https://github.com/square/retrofit/blob/87e0c81fde5e166b23e7a8184ba783f64c8f572f/retrofit/src/main/java/retrofit2/RequestBuilder.java#L89-L91

I need a self-contained test case to debug anything here, so I'm going to preemptively close. If you can come up with a failing test case I can take a look.

JakeWharton avatar Mar 18 '24 13:03 JakeWharton

this is the failing test case and you don't take a look. And there is only one test!

calidion avatar Mar 18 '24 13:03 calidion

https://github.com/Free-Web-Movement/android-base-library is the simplest example that showing how @field fails. if you don't have the ability to debug, then you'd better resign or close source this project.

calidion avatar Mar 29 '24 10:03 calidion