我在同一个laravel项目中使用了REST API和Web。两者都在localhost中工作。但不在服务器中。
我已使用Postman进行REST API检查。我在下面分享我的路线代码,
这是我的api.php
代码。
// Customer registration
Route::post('signup/', "api\CustomerAccountController@customerRegistration");
服务器上的REST API测试。转到下面的链接。
Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException: The GET method is not supported for this route. Supported methods: POST. in file /home1/foresqtn/quizapi.biconconsultants.com/quizapi/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php on line 117
此代码已上传到服务器。 现在,我使用相同的代码共享本地主机响应。转到下面的链接。
https://drive.google.com/file/d/13N71hqWQFXZcKNzSjr1eqqe7DUhPnnr6/view?usp=sharing
现在我找不到我在做什么错了。我正在运行相同的代码。
您的宝贵意见将不胜感激。
答案 0 :(得分:0)
已解决的问题
在邮递员中,当我尝试使用端点发送请求时,在URL的末尾添加了“ /”,这就是为什么我收到上述错误的原因。现在,错误已解决。