I\'m using an API that requires me to set the method to GET and include a message body. However when I try to do this I get the following error: \"Cannot send a content-body wi
It is not recommended to send content with a GET request. See this post for further details: HTTP GET with request body
And this is what Roy Fielding has to say about the topic.