0
I am studying retrofit and came across the following problem:
am performing a get request at url https://jsonplaceholder.typicode.com/posts/1
but when mounting the request I cannot add the posts/1 parameter
how is my code:
@GET("posts")
Call<ModelJson[]> ouvirMensagens(int page);
how I could build the url without using a @Query("") by mounting the url in the format below?