Android post Base64 String to PHP

前端 未结 5 532
星月不相逢
星月不相逢 2020-11-30 14:57

------ Solution ------
The issue was on our server. It can only handle post requests if we put www in front of our domain name. So that\'s what

5条回答
  •  情话喂你
    2020-11-30 15:20

    Have you tried reading the raw post data in PHP? Something like

    $data = $xml = file_get_contents('php://input');

    Have a look at this link for more info

    http://www.codediesel.com/php/reading-raw-post-data-in-php/

提交回复
热议问题