Man, I had the same issue last week! The httpx get response body is *not* `.body`—it’s `.text` or `.content`.
For JSON, `response.json()` is magic.
Btw, if you’re debugging, `print(response)` or `print(dir(response))` can help you see what’s available.
For JSON, `response.json()` is magic.
Btw, if you’re debugging, `print(response)` or `print(dir(response))` can help you see what’s available.
