Accessing posted Json data in php script Accessing posted Json data in php script laravel laravel

Accessing posted Json data in php script


PHP do not parse Json POST. So you need to get raw post data like this:

$data = file_get_contents("php://input");

Info about php php wrappers