百度开发工具提交的

原因1:

未设置 header

header: {
‘Content-Type’: ‘application/x-www-form-urlencoded’,
‘client’: ‘XCX’
},

原因2:

当请求头中的Content-Typeapplication/json时,PHP不会自动解析为$_POST

你需要手动解析:

$data = file_get_contents(‘php://input’);
$decoded_data = json_decode($data, true);

header: {
‘Content-Type’: ‘application/json’ // 确保Content-Type与实际数据类型匹配
}

作者 admin

百度广告效果展示