Retrofit POST Request with body parameters android
问题 I need to execute post request with retrofit but i have a problem which i can't understand very well. Before trying with code i tested api call with Postman and request look like this: Here is my android code: public class API { private static <T> T builder(Class<T> endpoint) { return new Retrofit.Builder() .baseUrl(Utils.API_BASE_URL) .addConverterFactory(ScalarsConverterFactory.create()) .addConverterFactory(GsonConverterFactory.create()) .build() .create(endpoint); } public static