错误500设置标头返回400错误PHP

时间:2015-01-24 17:35:14

标签: php rest http-headers http-status-code-400

我正在开发一个RESTful Web服务,老实说,这是我的第一个ws。我决定使用PHP,因为我认为我知道那种语言。

这是我的RestHandler对象,但是当我调试请求时,使用Charles访问未实现的方法时,它返回正确的响应,但是500错误而不是400.为什么?< / p>

class RestHandler {

    private $method;
    private $actionName;

    /**
     * @param $method
     * @param $action
     */
    public function __construct($method, $action)
    {
        $this->method = $method;
        $this->actionName = $action;

        if (isset($this->method) && isset($this->actionName))
        {
            if (! method_exists($this, $this->actionName))
            {
                // Action is not implemented in the object.
                $this->handleErrorReturning("Not implemented method.", 400);
                return;
            }
            // OK, proceed with actions
            $this->handleProceedRequest();
        }
        else
        {
            // Return error 406 Missing parameter
            $this->handleErrorReturning("Missing parameter", 406);
        }
    }

    private function handleProceedRequest()
    {
        if (strcasecmp($this->method, "get") == 0)
        {
            // No JSON to read
        }
    }

    /**
     * @param $errorDescription
     * @param $errorCode
     */
    private function handleErrorReturning($errorDescription, $errorCode)
    {
        header($_SERVER["SERVER_PROTOCOL"]." ".$errorDescription." ".$errorCode);
        header('Content-Type: application/json; charset=utf-8');
        $errorResponse = new ResponseError($errorCode, $errorDescription);
        echo $errorResponse;
    }
}

这是Charles快照 Charles snapshot

解决 我用errorCode反转了errorDescription,现在它可以工作了。这是一个愚蠢的错误。感谢

1 个答案:

答案 0 :(得分:1)

尝试像这样设置标题:

header($_SERVER['SERVER_PROTOCOL'] . ' Not implemented method', true, 400);