我正在尝试向控制器发送JSON POST请求。
标题为:[{"key":"Content-Type","value":"application/json"}]
我正在尝试最小的有效负载:{"user":1}
根据多篇文章,我尝试了以下内容:
public function authorize(){
echo 'Line 37';
print_r($this->input->raw_input_stream);//NULL
print_r(json_decode($this->input->raw_input_stream));//NULL
print_r(json_decode(file_get_contents('php://input')));//NULL
print_r(json_decode(trim(file_get_contents('php://input')), true));//NULL
print_r(json_decode(file_get_contents("php://input"), true));//file_get_contents(): Invalid php:// URL specified
}
但我得到var_dumps,string(0)“”的空字符串。
有什么建议吗?