1

我正在尝试做一个向网站发送 HTTP 请求并获得 HTTP 回复的小型应用程序。我使用标头上的状态来查看请求发生了什么。代码很简单,很短,但不知何故我仍然得到默认值HTTP/1.1 200 OK当一切正常时,我仍然得到默认值而不是我的个性化消息。

注意:请求可以有 2 或 3 个部分。2 部分仅进行身份验证,第三部分表示应该添加一些内容。如果您对代码的任何其他部分有任何评论,我也很高兴看到它们。注意2:令牌是用户名,因为不确定我以后是否真的需要它。

<?php
if(isset($_POST['usernameUS'])&&isset($_POST['passwordUS'])&&!empty($_POST['usernameUS'])&&!empty($_POST['passwordUS']))  {
    try {
        $hostname = "";
        $database = "";
        $username = "";
        $password = "";
        $pdo = new PDO("mysql:host=$hostname;dbname=$database", $username, $password);
        $stmt = $pdo->prepare("SELECT salt, password FROM users WHERE account=:account");
        $stmt->bindParam(':account', $_POST['usernameUS'], PDO::PARAM_STR);
        $stmt->execute();
        $row = $stmt->fetch(PDO::FETCH_ASSOC);
        $passwordUS = $pdo->quote($_POST['passwordUS']);
        $Blowfish_Pre = '$2a$05$';
        $Blowfish_End = '$';
        $bcrypt_salt = $Blowfish_Pre . $row['salt'] . $Blowfish_End;
        $hashed_password = crypt($passwordUS, $bcrypt_salt);
        if ($hashed_password == $row['password']) {
            if(isset($_POST['message']))    {
                try {
                    $stmt = $pdo->prepare("INSERT INTO newData (ip , account , token, message) VALUES (:ip, :username, :token, :message)");
                    $stmt->bindParam(':ip', $_POST['usernameUS'], PDO::PARAM_STR);
                    $stmt->bindParam(':username', $_POST['usernameUS'], PDO::PARAM_STR);
                    $stmt->bindParam(':token', $_POST['usernameUS'], PDO::PARAM_STR);
                    $stmt->bindParam(':message', $_POST['message'], PDO::PARAM_STR);
                    $value = $stmt->execute();
                    if($value)  {
                        header("HTTP/1.1 200 Added");
                    }
                    else {
                        header("HTTP/1.1 400 Could not add information");
                    }
                } catch (PDOException $e) {
                    header("HTTP/1.1 400 Cannot insert message", false);
                    file_put_contents('PDOErrors.txt', $e->getMessage(), FILE_APPEND);
                }
            }
                header("HTTP/1.1 200 Authenticated", false);
        } 
        else {
            header("HTTP/1.1 400 Incorrect Login Information", false);
        }
    } catch(PDOException $e) {
        header("HTTP/1.1 400 Could not connect", false);
        file_put_contents('PDOErrors.txt', $e->getMessage(), FILE_APPEND);
    }
}
else {
    header( 'Location: http://www.example.com/' ) ;
}
?>
4

1 回答 1

0

找到了答案,但没有找到解释。使用 200 代码,将始终设置为“Ok”,所以如果我将其更改为 400,那么我可以设置自己的回复。

不确定回答我自己的问题是否意味着我要求快速,或者我至少一直在寻找解决方案:S

于 2013-01-05T17:23:26.547 回答