I'm trying to make an Http GET and send JSON as input:
https://host/X/Y?input={"foo":"bar","baz":"yak"}
according to these posts:
HttpGet with request body android
Apache's HttpGet (used by Android) does not support this kind of thing.
I've tried some of the alternatives specified in that post and they haven't worked.
First, can someone confirm Apache's HttpGet won't let you send JSON.
Next, can someone suggest any ways around this - alternate libraries, other classes, anything ….