我正在构建一个API来存储注册用户数据。数据使用CURL with an api-key
传递。我需要检查api-key是否有效。如果无效,则返回带有CURLINFO_HTTP_CODE 的错误消息。我回复了这条消息。 但是CURLINFO_HTTP_CODE是200.我需要将其更改为500 。怎么做?我正在使用 SLIM框架
数据发布代码。
private static function postJSON($url, $data) {
$jsonData = array (
'json' => json_encode($data)
); // data array contains some data and api-key
$jsonString = http_build_query($jsonData);
$http = curl_init($url);
curl_setopt($http, CURLOPT_HEADER, false);
curl_setopt($http, CURLOPT_RETURNTRANSFER, true);
curl_setopt($http, CURLOPT_POST, true);
curl_setopt($http, CURLOPT_HTTPHEADER, array('Content-type: application/json'));
curl_setopt($http, CURLOPT_HTTPHEADER, array(
'Content-Type: application/x-www-form-urlencoded',
'Content-Length: '.strlen($jsonString)
));
curl_setopt($http, CURLOPT_POSTFIELDS, $jsonString);
$responseBody = curl_exec($http);
$statusCode = curl_getinfo($http, CURLINFO_HTTP_CODE);
echo $statusCode; // need to get 500 if the api key is not registerd
if($statusCode > 200) {
error_log('BugTracker Warning: Couldn\'t notify ('.$responseBody.')');
}
curl_close($http);
return $statusCode;
}
以下是将响应CURL操作的代码
$apiKey = $event->apiKey;
// Check if the project for the given api key exists. if not do not insert the bugs
$projectDetails = $bt->getProjectDetails($apiKey);
if(count($projectDetails)>0){
print_r($projectDetails);
foreach($event->exceptions as $bug){
$errorClass = $bug->errorClass;
$message = $bug->message;
$lineNo = $bug->lineNo;
$file = $bug->File;
$createdAt = $bug->CreatedAt;
//saving to db
$bt->saveData($releaseStage,$context,$errorClass,$message,$lineNo,$file,$createdAt,$apiKey);
}
}
else{
// show error with 500 error code
http_response_code(500);
echo "Invalid project";
}
答案 0 :(得分:1)
您正在寻找的是$app->halt()
。您可以在Slim文档的Route Helpers部分找到更多信息。
Slim应用程序的
halt()
方法将立即返回具有给定状态代码和正文的HTTP响应。此方法接受两个参数:HTTP状态代码和可选消息。
这样就可以非常容易地返回500和一条消息,但您可能会考虑使用using $app->notFound()
,因为您正在尝试发送未找到所请求项目的消息(404),而是而不是服务器错误(5xx)。
答案 1 :(得分:0)
您可以将标题设置为500
header("HTTP/1.1 500 Internal Server Error");
或尝试使用try catch并抛出错误
throw new Exception("This is not working", 500);