【发布时间】:2021-01-27 18:26:04
【问题描述】:
目前正在处理 SMS API 在发送短信后检索 Post 请求报告。发送报告后,尝试通过 API 中间件回调报告。发送短信后,Ngrok 返回 405 Method Not Allowed。
Ngrok 返回
API 中间件
【问题讨论】:
标签: laravel api ngrok http-status-code-405 http-tunneling
目前正在处理 SMS API 在发送短信后检索 Post 请求报告。发送报告后,尝试通过 API 中间件回调报告。发送短信后,Ngrok 返回 405 Method Not Allowed。
Ngrok 返回
API 中间件
【问题讨论】:
标签: laravel api ngrok http-status-code-405 http-tunneling
您的路由定义为POST 请求。但是您的图像显示GET 请求。要么将请求方法更改为POST,要么将路由定义更改为Route::get。
【讨论】: