@@ -168,14 +168,22 @@ argument::
168168
169169.. _component-foundation-attributes :
170170
171- Finally , you canalso store additional data in the request,
172- thanks to thepublic `` attributes `` property , which is also an instance of
171+ Thanks to the public `` attributes `` property , you can store additional data
172+ in therequest , which is also an instance of
173173:class: `Symfony\\ Component\\ HttpFoundation\\ ParameterBag `. This is mostly used
174174to attach information that belongs to the Request and that needs to be
175175accessed from many different points in your application. For information
176176on how this is used in the Symfony2 framework, see
177177:ref: `the Symfony2 book <book-fundamentals-attributes >`.
178178
179+ Finally, the raw data sent with the request body can be accessed using
180+ :method: `Symfony\\ Component\\ HttpFoundation\\ Request::getContent() `::
181+
182+ $content = $request->getContent();
183+
184+ For instance, this may be useful to process a JSON string sent to the
185+ application by a remote service using the HTTP POST method.
186+
179187Identifying a Request
180188~~~~~~~~~~~~~~~~~~~~~
181189