为了通过考试,我从大学那里得到了一个quize。问题是
这是您的个人网址:aHR0cHM6Ly9nZXQtY29kZS5waHA / dG9rZW49ZTk5M2I1YWQzYmVhNzc2MDNiZmIwYTg3NzAxMTBiZjY2YjFhZGU0MA ==
所以我用base64解码了它,
结果:
https://get-code.php?token=e993b5ad3bea77603bfb0a8770110bf66b1ade40
我将数据发布到cur ulr,如下所示
$url = 'https://get-code.php?token=e993b5ad3bea77603bfb0a8770110bf66b1ade40';
$ch = curl_init($url);
$jsonData = array(
'email' => 'example@email.com'
);
$jsonDataEncoded = json_encode($jsonData);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonDataEncoded);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
$result = curl_exec($ch);
extract($_POST);
结果中没有任何内容,服务器没有响应任何内容