我正在使用CodeIgniter开发Web应用程序,并请求Slim REST API的数据。我在Web应用程序上遇到问题,以从HTTPFUL请求中获得响应。我使用基本功能在我的Codeigniter Frontend应用程序上提出所有请求,它是这样的:
function httpRequest($verb, $endpoint, $sentHeaders = null, $body = null)
{
try {
require FCPATH . 'vendor/autoload.php';
$context = & get_instance();
$xUsuario = $context->session->usuario;
$headers = array(
'Content-Type' => 'application/json',
'xAuthChaveApi' => $context->session->userdata('CLIENT_KEY'),
'xAuthUsuarioID' => $xUsuario['id'],
'xAuthUsuarioToken' => $xUsuario['sessao']['token']
);
if (isset($sentHeaders)) {
$headers = array_merge($headers, $sentHeaders);
}
/*=========THE EXCEPTION IS THROWN HERE=========*/
$response = HttpfulRequest::{$verb}(API_URL . $endpoint)
->addHeaders($headers)
->body(json_encode($body))
->send();
if ($response->code == 401) {
encerrarSessao('Usuário não autorizado! Verifique os dados das suas credenciais e tente novamente');
}
return json_decode(json_encode($response->body), true);
} catch (Exception $ex) {
show_error('O seguinte erro ocorreu ao fazer requisição aos servidores: ' . $ex->getMessage());
}
}
我已经使用了Web应用程序和托管在我的Localhost上的API,我的Localhost上的应用程序和HostGator服务器上的API进行了测试,并且它的工作方式就像魅力一样。但是,当我在在线服务器上托管应用程序和API时,我会收到错误。有趣的是,错误仅发生在这个特定的端点上,我对本地或在线的其他人都没有任何问题。我什至可以使用Postman上的服务器上调用此端点,而且工作正常。
这是我在API上的端点代码:
public static function listarImportacao(Request $request, Response $response) {
try {
$dataInicial = $request->getHeader('dataInicial')[0];
$dataFinal = $request->getHeader('dataFinal')[0];
if(!isset($dataInicial) && !isset($dataFinal)) {
$dataInicial = date('Y-m-d');
$dataFinal = date('Y-m-d', strtotime('+1 day'));
}
$partidas = Partida::whereBetween(
'dataHora',
array($dataInicial, $dataFinal)
)
->with(array('liga.pais', 'timeCasa', 'timeFora'))
->where('flagDisponivel', '!=', '1')
->where('cotacao', '!=', 'null')
->whereRaw('(dataHora >= (now() + INTERVAL 5 MINUTE))')
->get();
$meta = Helper::metaArray(Enum::SUCS_STS, Enum::SELECTED);
$partidas = Helper::formatarPartidas($partidas);
return $response->withCustomJson($meta, $partidas);
} catch (Exception $ex) {
$meta = Helper::metaArray(Enum::ERR_STS, $ex, 400);
return $response->withCustomJson($meta);
}
}
这是提出请求的控制器函数:
public function importacao() {
try {
$post = $this->input->post();
if(isset($post['dataInicial']) && isset($post['dataFinal'])) {
$dataInicial = dataAmericana($post['dataInicial']);
$dataFinal = dataAmericana($post['dataFinal']);
setFlashData($post['dataInicial'], 'dataInicial');
setFlashData($post['dataFinal'], 'dataFinal');
} else {
$dataInicial = date('Y-m-d', strtotime('today'));
$dataFinal = date('Y-m-d', strtotime('+1 day'));
}
$headers = array(
'dataInicial' => $dataInicial,
'dataFinal' => $dataFinal
);
$partidas = httpRequest('GET', Endpoint::listaImportacao, $headers);
//var_dump($partidas['data']); die();
$dados = array(
'titulo' => 'Importação de Partidas',
'nomeView' => 'partida/importacao',
'partidas' => isset($partidas['data']) ? $partidas['data'] : null
);
$this->load->view('menus/main', $dados);
} catch (Exception $ex) {
show_error('O seguinte erro ocorreu ao fazer requisição aos servidores: ' . $ex->getMessage());
}
}
我这里有什么我缺少的吗?预先感谢。
我也有此错误无法解析响应,因为json ,我确定返回的json还可以。经过长时间的搜索后,输出中缺少变量的PHP错误。那就是破坏正确的JSON输出。因此,请检查与PHP相关的错误。