Home
DevCentral
Search
Configure Global Search
Log In
Transactions
D119
Change Details
Change Details
Old
New
Diff
(1) Capture a request (for example through Runscope) with this code: ``` protected function extractPayload () { $this->payload = $_POST; print_r($_POST); abort(503, "Debugging payload"); } ``` (2) Replace by `$this->payload = Request::all();`. (3) Replay the request, and check if the reply diff is identical
(1) Capture a request (for example through Runscope) with this code: ``` protected function extractPayload () { $this->payload = $_POST; print_r($_POST); abort(503, "Debugging payload"); } ``` (2) Replace by `$this->payload = Request::all();`. (3) Replay the request, and check if the reply diff is identical
Continue