简体   繁体   English

405 方法不允许 - CodeIgniter Rest-server

[英]405 method not allowed - CodeIgniter Rest-server

I am having troubles with Codeigniter - Rest Server for a week already.我在使用 Codeigniter - Rest Server 已经有一个星期了。 I have a controller called Users with 2 methods all_users_get and register_post .我有一个名为Users的控制器,有 2 个方法all_users_getregister_post

  1. all_users_get is working fine. all_users_get工作正常。
  2. register_post注册_post

    returns { "status": false, "error": "Unknown method" }

If I change the method all_users_get for POST I get the same error, just works with GET如果我更改了 POST 的all_users_get方法,我会得到同样的错误,只适用于 GET

<?php

use Restserver\Libraries\REST_Controller;
defined('BASEPATH') OR exit('No direct script access allowed');

require APPPATH . 'libraries/REST_Controller.php';
require APPPATH . 'libraries/Format.php';

class Users extends REST_Controller {

function __construct()
{
    // Construct the parent class
    parent::__construct();

    $this->load->model('user_model');

    // Configure limits on our controller methods
    // Ensure you have created the 'limits' table and enabled 'limits' within application/config/rest.php
    $this->methods['users_get']['limit'] = 500; // 500 requests per hour per user/key
    $this->methods['users_post']['limit'] = 100; // 100 requests per hour per user/key
    $this->methods['users_delete']['limit'] = 50; // 50 requests per hour per user/key
}

/**
 * @method: GET
 * Fetch all users
 */

public function all_users_get()
{
    $users = $this->user_model->all_users();
    // Check if the users data store contains users (in case the database result returns NULL)
    if ($users)
    {
        // Set the response and exit
        $this->response($users, REST_Controller::HTTP_OK); // OK (200) being the HTTP response code
    }
    else
    {
        // Set the response and exit
        $this->response([
            'status' => FALSE,
            'message' => 'No users were found'
        ], REST_Controller::HTTP_NOT_FOUND); // NOT_FOUND (404) being the HTTP response code
    }
    $this->response($users, REST_Controller::HTTP_OK);

}

/**
 * User Register
 * *************************
 * 
 * @param: fullname
 * @param: email address
 * @param: password
 * @param: username
 * 
 * *************************
 * @method: POST
 * @link : api/users/register
 */

public function resgister_post()
{

    header('Access-Control-Allow-Origin: *');

    $this->response("Teste", REST_Controller::HTTP_OK);

}

}

I am running my code in localhost with Xampp and I found on phpinfo我正在使用 Xampp 在本地主机中运行我的代码,我在phpinfo 上找到了

_SERVER["REQUEST_METHOD"] GET _SERVER["REQUEST_METHOD"] GET

I am confused I don't know if this had something to do with Xampp conf or my code, please help.我很困惑我不知道这是否与 Xampp conf 或我的代码有关,请帮忙。 Thank you all谢谢你们

This function should work for you :)这个功能应该适合你:)

  public function index_post()// post data to the database
  {
    $data = [
        'first_name'        => $this->post('first_name'),
        'last_name'         => $this->post('last_name'),
        'email'             => $this->post('email')

    ];

    if( $this->users->createUser($data) > 0)
    {
        $this->response([
            'status' => true,
            'message' => 'NEW USER CREATED'
        ], REST_Controller::HTTP_CREATED); 
    }
    else{
        $this->response([
            'status' => false,
            'message' => 'FAILED TO CREATE NEW USER'
        ], REST_Controller::HTTP_BAD_REQUEST);
    }

}
header('Access-Control-Allow-Origin: *');
if ($_SERVER['REQUEST_METHOD'] === 'OPTIONS') {
    header('Access-Control-Allow-Methods: GET, PUT, POST, DELETE, OPTIONS');
    header('Access-Control-Allow-Headers: Content-Type');
    exit;
}

just copy above line in constructor it worked for me只需在构造函数中复制上面的行,它对我有用

Ultimate Solution Step 1 In your constructor, add the code below终极解决方案步骤 1在您的构造函数中,添加以下代码

header('Access-Control-Allow-Origin: *');
header("Access-Control-Allow-Headers: X-API-KEY, Origin, X-Requested-With, Content-Type, Accept, Access-Control-Request-Method");
header("Access-Control-Allow-Methods: GET, POST, OPTIONS, PUT, DELETE");
$method = $_SERVER['REQUEST_METHOD'];
if ($method == "OPTIONS") {
    die();
}

Step 2: Open your route.php and define an API route eg第 2 步:打开你的 route.php 并定义一个 API 路由,例如

$route['api/v1/auth/login'] = 'api/v1/auth/login';

Note: the route will be used in step 3注意:该路由将在步骤 3 中使用

Step 3: Open your config.php, add the code below第三步:打开你的config.php,添加下面的代码

if (stripos($_SERVER["REQUEST_URI"],'/api/v1/auth/login/') === FALSE) {
    $config['csrf_protection']  = FALSE;
}else{ 
    $config['csrf_protection']  = FALSE; 
}

Note: change /api/v1/auth/login/ to your endpoint注意:将/api/v1/auth/login/更改为您的端点

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM