In retrofit if I have a request annotated with @F...
# squarelibraries
c
In retrofit if I have a request annotated with @FormUrlEncoded and @Post are the fields part of the actual Url? i.e. Would something like this be bad?
@Field("password") password: String
I'm using charles to inspect the request, and I don't see it in the URL there, it seems to be part of the request body, but not sure. My backend team says that they see someone sending it in the url as a param.