I have a basic silex application, and I try to test it using HTTPie. Yet when posting using:
http POST http://localhost:1337 data="hello world"
The data
, that I get from the Request object via:
$data = $request->request->get('data');
will always be empty. What is the problem here?