As your get request works, and the post request doesn't, for your server-side script you'll want to decode the json being sent through the POST method - $input=@file_get_contents("php://input"); $event_json=json_decode($input,true); destruk, thank you for explaining as well as showing exa...