my interface looks 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 supposed to put as a param to get in body simply:
login=myName&password=myPassword&key=othereKey
without escaping, brackets or quota.
I've try to pass a string and i just get:
"login=myName&password=myPassword&key=othereKey"
but it is wrong because of quota signs.