I’m sending a .php file POST data from a java application. The .php file is not accepting the POST data. file_get_contents(‘php://input’) is empty and $_POST is empty. I kno
I was having the same problem. It turned out to be because I was prefixing my target with http . I changed it to https and it worked.