$content = file_get_contents('php://input');to grab the verification code but it's giving the error. I have tried in postman and it is returning 200 ok.
$content = file_get_contents('php://input');to grab the verification code but it's giving the error. I have tried in postman and it is returning 200 ok.
Hi @demskigroup,
In order to further assist you can you please provide more information about the issue, specifically what the error message is and the configuration you are using so that we can try to reproduce the error.
$content = file_get_contents('php://input'); $file = "text.txt"; $Saved_File = fopen($file, 'w'); fwrite($Saved_File, $content); fclose($Saved_File); header("HTTP/1.1 200 SUCCESS");
3 People are following this question.