我的Android应用程序正在使用以下代码点击我的api
<?php
$token = $_GET['token'];
$encrypted_data = base64_encode($token);
$sendUrl = "https://example.com";
$url = "$sendUrl?token=$token";
$result = file_get_contents($url);
$data_array = json_decode($result, true);
$data_array['url'] = 'https://example2.com/';
$result = json_encode($data_array);
$arr = json_decode($result, true);
echo json_encode($arr, JSON_UNESCAPED_SLASHES), "\n";
?>
我的应用程序等待200响应并从$ senUrl收到JSON输出,但是它使用JSON获得空200响应。 我怎么能发送JSON并等待$ sendUrl响应才发送200