【问题标题】:Creating Restful API what kind of headers should be put out before the response?创建 Restful API 在响应之前应该放出什么样的标头?
【发布时间】:2016-05-02 01:34:32
【问题描述】:

我没有找到关于这方面的大量信息,也许我只是搜索错了,谁知道.. 我想知道或试图弄清楚我应该为 API 响应示例输出什么样的标头

header('Content-Type: application/json');

我是否会针对数据类型提出一些内容,但是否还有其他关于时间、到期或其他我应该关注的事项?

最终,我正在尝试为我想要开发的应用程序创建一个 API,因此我试图尽早弄清楚什么是跨平台兼容的以及什么是需求,以便我可以尝试将它们构建到我的想法中标准开发的一部分

【问题讨论】:

  • 您是否在询问需要哪些 HTTP 响应标头?那太宽泛了,请尝试阅读相关的 RFC。为什么要重新发明轮子而不使用可以为您处理这个问题的库/框架?
  • 我应该说“它依赖”?
  • Content-type 仅定义返回数据时的数据格式。 API“应该”响应没有任何特定的格式。 REST-api 可以返回 JSON、XML、HTML 等等。许多 API 甚至可以以多种格式返回数据,让调用者决定什么最适合他/她。所以就像@Federico 说的......这取决于。
  • 目前我正在使用 codeigniter,因为那是我最熟悉的,但它就像我过去尝试使用的大多数框架一样,不会直接放出必须全面兼容的标头,以便让说一个 JSON 响应。因此,我最终只是想弄清楚除了内容类型之外,我应该期望输出的最低限度是什么。
  • @MagnusEriksson 最终结果计划有多种格式,但我将使用 JSON,因为这更符合我的整体需求,我计划在未来扩展它

标签: php rest http-headers


【解决方案1】:

现在这就是你想要的。

主文件:Rest.inc.php

<?php
    class REST {

        public $_allow = array();
        public $_content_type = "application/json";
        public $_request = array();

        private $_method = "";        
        private $_code = 200;

        public function __construct(){
            $this->inputs();
        }

        public function get_referer(){
            return $_SERVER['HTTP_REFERER'];
        }

        public function response($data,$status){
            $this->_code = ($status)?$status:200;
            $this->set_headers();
            echo $data;
            exit;
        }

        private function get_status_message(){
            $status = array(
                        100 => 'Continue',  
                        101 => 'Switching Protocols',  
                        200 => 'OK',
                        201 => 'Created',  
                        202 => 'Accepted',  
                        203 => 'Non-Authoritative Information',  
                        204 => 'No Content',  
                        205 => 'Reset Content',  
                        206 => 'Partial Content',  
                        300 => 'Multiple Choices',  
                        301 => 'Moved Permanently',  
                        302 => 'Found',  
                        303 => 'See Other',  
                        304 => 'Not Modified',  
                        305 => 'Use Proxy',  
                        306 => '(Unused)',  
                        307 => 'Temporary Redirect',  
                        400 => 'Bad Request',  
                        401 => 'Unauthorized',  
                        402 => 'Payment Required',  
                        403 => 'Forbidden',  
                        404 => 'Not Found',  
                        405 => 'Method Not Allowed',  
                        406 => 'Not Acceptable',  
                        407 => 'Proxy Authentication Required',  
                        408 => 'Request Timeout',  
                        409 => 'Conflict',  
                        410 => 'Gone',  
                        411 => 'Length Required',  
                        412 => 'Precondition Failed',  
                        413 => 'Request Entity Too Large',  
                        414 => 'Request-URI Too Long',  
                        415 => 'Unsupported Media Type',  
                        416 => 'Requested Range Not Satisfiable',  
                        417 => 'Expectation Failed',  
                        500 => 'Internal Server Error',  
                        501 => 'Not Implemented',  
                        502 => 'Bad Gateway',  
                        503 => 'Service Unavailable',  
                        504 => 'Gateway Timeout',  
                        505 => 'HTTP Version Not Supported');
            return ($status[$this->_code])?$status[$this->_code]:$status[500];
        }

        public function get_request_method(){
            return $_SERVER['REQUEST_METHOD'];
        }

        private function inputs(){
            switch($this->get_request_method()){
                case "POST":
                    $this->_request = $this->cleanInputs($_POST);
                    break;
                case "GET":
                    //break;
                case "DELETE":
                    $this->_request = $this->cleanInputs($_GET);
                    break;
                case "PUT":
                    parse_str(file_get_contents("php://input"),$this->_request);
                    $this->_request = $this->cleanInputs($this->_request);
                    break;
                default:
                    $this->response('',406);
                    break;
            }
        }        

        private function cleanInputs($data){
            $clean_input = array();
            if(is_array($data)){
                foreach($data as $k => $v){
                    $clean_input[$k] = $this->cleanInputs($v);
                }
            }else{
                if(get_magic_quotes_gpc()){
                    $data = trim(stripslashes($data));
                }
                $data = strip_tags($data);
                $clean_input = trim($data);
            }
            return $clean_input;
        }        

        private function set_headers(){
            header("HTTP/1.1 ".$this->_code." ".$this->get_status_message());
            header("Content-Type:".$this->_content_type);
        }
    }    
?>

文件api.php中的API函数

<?php
    error_reporting(E_ALL ^ E_DEPRECATED);
    require_once("Rest.inc.php");

    class API extends REST {

        public $data = "";

        const DB_SERVER = "host";
        const DB_USER = "username";
        const DB_PASSWORD = "asdfgf";
        const DB = "database name";

        private $db = NULL;

        public function __construct(){
            parent::__construct();                // Init parent contructor
            $this->dbConnect();                    // Initiate Database connection
        }

        /*
           Database connection 
        */
        private function dbConnect(){
            $this->db = mysql_pconnect(self::DB_SERVER,self::DB_USER,self::DB_PASSWORD);
            if (!$this->db)
            {
              echo "Please try later.";
            }
            if($this->db)
                mysql_select_db(self::DB,$this->db);
        }

        /*
         * Public method for access api.
         * This method dynmically call the method based on the query string
         *
         */
        public function processApi(){
            $func = strtolower(trim(str_replace("/","",$_REQUEST['rquest'])));
            if((int)method_exists($this,$func) > 0)
                $this->$func();
            else
                $this->response('',400);                // If the method not exist with in this class, response would be "Page not found".
        }

        /*************API SPACE START*******************/

        private function about(){

            if($this->get_request_method() != "POST"){
                $error = array('status' => 'WRONG_CALL', "msg" => "The type of call cannot be accepted by our servers.");
                $error = $this->json($error);
                $this->response($error,406);
            }
            $data = array('version' => '0.1', 'desc' => 'This API is created by Blovia Technologies Pvt. Ltd., for the public usage for accessing data about vehicles.');
            $data = $this->json($data);
            $this->response($data,200);

        }



        /*************API SPACE END*********************/

        /*
            Encode array into JSON
        */
        private function json($data){
            if(is_array($data)){
                return json_encode($data, JSON_PRETTY_PRINT);
            }
        }

    }

    // Initiiate Library

    $api = new API;
    $api->processApi();
?>

现在终于配置.htaccess

在您放置api.phpRest.inc.php 的同一文件夹中创建一个名为.htaccess 的文件

RewriteBase /
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-s
RewriteRule ^(.*)$ api.php?rquest=$1 [QSA,NC,L]

RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.*)$ api.php [QSA,NC,L]

RewriteCond %{REQUEST_FILENAME} -s
RewriteRule ^(.*)$ api.php [QSA,NC,L]   

现在调用你的 API

localhost/about

函数在哪里。您可以在函数内部动态检查是GET还是POST,并根据需要发送响应文本和代码。我已经完全给了你你想要的。

考虑到api.phpRest.inc.php 都在/ 中,(这就是RewriteBase.htaccess 文件中的内容)

如果要将文件放在其他目录或文件夹中,例如/beta/v1/

RewriteBase/ 更改为 /beta/v1

注意。将 .htaccess 放在同一个文件夹中。

而且这两个文件在同一个目录下。目录应该放在RewriteBase的htaccess中

如果您在理解上述内容时有任何问题,请告诉我。

【讨论】:

  • 如果我需要在这个 api.php 中包含一些其他的 .php 文件怎么办?应该怎么做?
  • 例如,如果我需要在我的 rest api 中使用需要 require("setup.php") 或 require_once("setup.php") 的 php SDK,那么这些应该在哪里添加? api.php?我尝试在下面添加这个 require_once("Rest.inc.php");但这不起作用。
  • 请将其作为一个新问题提出,分享您的研究成果,以便我更好地为您提供帮助。
【解决方案2】:

我在响应标头中包含的一件好事是已发送请求的相关 ID。这使您的 API 的使用者可以将问题或潜在错误与请求相关联,并允许您查找与该请求有关的信息。

当然,这需要您记录与关联 ID 相关的信息,但事实证明它对我非常有用。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2014-11-16
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-11-30
    • 2010-12-04
    • 2010-12-31
    相关资源
    最近更新 更多