无法在邮递员中测试PHP方法

时间:2019-02-13 11:16:22

标签: php rest postman

我已经在邮递员中测试了许多REST API,但是从未遇到过包含$_REQUEST['method']的API,这些API决定了要调用的方法。现在我的问题是如何在邮递员上测试此API。如何在邮递员中传递$_REQUEST['method']的姓名。

这是我的PHP代码

<?php 
include_once('config.php');
if(isset($_REQUEST['method'])){
// echo '<pre>';

    if($_POST['method']=='create'){

        $name= $_POST['name'];
        $location = $_POST['location'];
        // $images = null;
        $rating = $_POST['rating'];
        $specility = $_POST['specility'];
        $file = rand(1000,100000)."-".time().'-'.$_FILES['image']['name'];
        $file_loc = $_FILES['image']['tmp_name'];
        $file_size = $_FILES['image']['size'];
        $file_type = $_FILES['image']['type'];
        $path_name="images/".$file;

        move_uploaded_file($file_loc,$path_name);


        $query = "INSERT into `restaurant` (name, location, image, rating,specility) VALUES ('$name', '$location', '$path_name', '$rating','$specility')";

        $result = mysqli_query($con,$query);

        if($result){
            echo json_encode(['status'=>'success','response'=>'Restaurant created successfuly']);       
        }else{
            echo json_encode(['status'=>'failed','response'=>'Restaurant details are not proper']);     
        }

    }

    if($_POST['method']=='list'){

        $query = "SELECT * FROM `restaurant`";
        $result = mysqli_query($con,$query);
        if(mysqli_num_rows($result)>0){
            $data=mysqli_fetch_assoc($result);  
            echo json_encode(['status'=>'success','response'=>$data]);      
        }else{
            echo json_encode(['status'=>'failed','response'=>'No data found']);     
        }

    }

}else{
    echo json_encode(['status'=>'failed','response'=>'Something went wrong']);
}

我也在服务器上托管了这些API。我不知道我在互联网上搜索了什么来解决此问题。出于安全原因,请参见下面的图片,我更改了网址。

enter image description here

请告诉我我该怎么做。

1 个答案:

答案 0 :(得分:0)

您可以在post变量中传递方法键。 $ _REQUEST可以接受任何请求类型,无论它是get类型的post类型。因此,您只需要在get或post中传递方法密钥。而且,如果您要检查请求是已发布还是已收到,则可以进行以下检查:

$_SERVER['REQUEST_METHOD']

if ($_SERVER['REQUEST_METHOD'] === 'POST') {
} else if ($_SERVER['REQUEST_METHOD'] === 'GET') {
}

希望它对您有帮助。