hi i want to post a List of Strings like this @Fie...
# android
f
hi i want to post a List of Strings like this @Field("image") List<String> image if i send more url its works fine but is i post only 1 it send not as list only simple string how can is solve it? i want to send a list with 1 element
r
you can either have a separate API implementation where your
@Field
is a
String
and you can choose between the two APIs. But in this case whats wrong with having a
List<String>
with a single element? And If you’re uploading an image, you might want to use
MultiPart
here