I am using Retrofit and Robospice to make API calls in my android application. All @POST methods work great, and so do @GET commands without any parameters in the URL, but I
Do not write your Query params in GET-URL. Do it like this:
@GET("/my/api/call") Response getMyThing(@Query("param1") String param1, @Query("param2") String param2);