Я пытаюсь запросить 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) "".
Есть предложения?