12 questions
We're testing the open weather web to retrieve data using Retrofit2 By the way, I receive the data well, but there is a part of GSON parsing that I do not know, so I would like to ask you a question {...
Is there a way to automatically log the parameters used while using retrofit2?I think I can do something about the interceptor, but it's not working well
public static insertPromoteMsg insertPromoteMsgAPI() { return (insertPromoteMsg) retrofit(insertPromoteMsg.class); } public interface insertPromoteMsg { @Multipart @POST(/insertPromoteMsgApp3.do) ...
We are currently trying to communicate with Android Studio using retrofit2 library.The server is using the restful API and responds with a json type.Expected BEGIN_ARRAY but BEGIN_OBJECT at line 1 col...
public class ResultVO<T> { public Result result; public Result getResult() { return result; } public class Result { public String code; public ArrayList<T> data; public String getCode(...
Retrofit2 is in use. If you communicate with the API that registers the user, it is processed well, so you can check that it has entered the DB, but in retrofit, it cannot go to onResponse and falls t...
I am working on replacing the communication API with retrofit2Only Communicating plain text parameters works well Blocked in placing and uploading image.The result keeps failing, but I don't know wher...
Why are we using Retrofit2 + OkHttp3 together?I heard from someone that they use it together because of encryption. Is it right to tie it together because it's encryption?
I want to get the barcode number if there is a barcode in DB when I take a barcode.So I searched here and there and googled, but there were overwhelmingly many things that brought the entire DB.First ...
Interface used within Android Studio.public interface ApiInterface { @GET(test.php) Call<Person> getPerson(@Query(name) String keyword);}Call<List<Person>>Not like that, use it like ...
- 1 - | » |
© 2024 OneMinuteCode. All rights reserved.