不允许使用Slim Framework方法。必须是以下之一:POST(405)

时间:2017-07-12 17:35:17

标签: php .htaccess slim

我在简洁的框架中编写了REST api。当我从浏览器调用authenticate API时,它会通过'方法不允许。必须是以下之一:POST'。以下是我的代码,请在我出错的地方纠正我。

的index.php

<?php

require 'vendor/autoload.php';
require 'Authenticate.php';

$app = new \Slim\App;

$app->post('/api/authenticate', \Authenticate::class);

$app->run();

的.htaccess

RewriteEngine On
RewriteRule ^ index.php [QSA,L]

网址

http://localhost/project/api/authenticate

1 个答案:

答案 0 :(得分:2)

如果您在浏览器中输入网址,则该方法将为GET而不是POST。您可以使用Postman或您选择的其他替代方法来测试REST API以用于其他方法,例如POSTPUTDELETE等。

有关HTTP方法的更多信息here

希望它有所帮助!