Is there any way I could use Retrofit and replace the parameter =
operator sign with my own operator (e.g. *equals*
).
@GET("/endpoint")
Class method(@Query("Key") int value)
This creates
/endpoint/method?Key=value
but I need
/endpoint/method?Key*equals*value
Thanks