私のインターフェースは次のようになります。
@Rest(rootUrl = "https://myurl.com", converters = { GsonHttpMessageConverter.class })
public interface CommunicatonInterface
{
@Get("/tables/login")
public Login login(Param param);
public RestTemplate getRestTemplate();
}
問題は、単純に体に入るためのパラメーターとして何を入れるべきかということです:
login=myName&password=myPassword&key=othereKey
エスケープ、ブラケット、クォータなし。
文字列を渡そうとしましたが、次のようになりまし
"login=myName&password=myPassword&key=othereKey"
たが、クォータ記号のために間違っています。