Answer the question
In order to leave comments, you need to log in
How to fix Non-body HTTP method cannot contain @Body?
When trying to change data in the database, an error occurs:
Interface code:
Non-body HTTP method cannot contain
.
@GET("/update")
public Call<Boolean> update(@Body UsersUpdate urs);
Answer the question
In order to leave comments, you need to log in
the thing is GET
- requests don't have pages
- replace the method annotation
with @Post("/update")
or@Put("/update")
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question