Я создаю post api в cakephp3.6, используя почтальон, но когда я отправляю запрос, он выдает ошибку вроде
Missing Route
Error: A route matching "/apis/register" could not be found.
Ниже мой код в файле config / route.php
Router::scope('/apis', ['Prefix' => 'apis'], function ($routes) {
$routes->applyMiddleware('csrf');
$routes->get('/all', ['controller' => 'Apis', 'action' => 'index']);
$routes->post('/register', ['controller' => 'Apis', 'action' => 'register']);
});
Если кто-нибудь знает решение, пожалуйста, помогите.