my interface is as follows:
@Rest(rootUrl = "https://myurl.com", converters = { GsonHttpMessageConverter.class }) public interface CommunicatonInterface { @Get("/tables/login") public Login login(Param param); public RestTemplate getRestTemplate(); }
The question is what I had to put as a parameter, just to get the body:
login=myName&password=myPassword&key=othereKey
without shielding, brackets or quotas.
I try to pass a string, and I just get: "login=myName&password=myPassword&key=othereKey" , but this is incorrect due to quota characters.
Vicek source share