0

我正在构建一个 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";
    }
4

2 回答 2

1

您正在寻找的是$app->halt(). 你可以在 Slim 文档的Route Helpers部分找到更多信息。

Slim 应用程序的halt()方法将立即返回带有给定状态代码和正文的 HTTP 响应。此方法接受两个参数:HTTP 状态代码和可选消息。

这将非常容易返回 500 和一条消息,但您可能会考虑改用$app->notFound(),因为您正在尝试发送未找到请求的项目 (404) 的消息,而不是服务器错误 (5xx) .

于 2013-12-12T14:53:59.440 回答
0

您可以将标题设置为 500

header("HTTP/1.1 500 Internal Server Error");

或尝试使用 try catch 并抛出错误

throw new Exception("This is not working", 500);
于 2013-10-22T02:11:36.773 回答