API OPTIONS Cors problem

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • dimyy
    Active Community Member
    • Jun 2018
    • 581

    API OPTIONS Cors problem

    API user is ok
    GET request is passed
    OPTIONS request: 405 not allowed

    ERROR: 405 Method Not Allowed Type: Slim\Exception\HttpMethodNotAllowedException Code: 405 Message: Method not allowed. Must be one of: GET, POST File: /home/office/public_html/vendor/slim/slim/Slim/Middleware/RoutingMiddleware.php Line: 79 Trace: #0 /home/office/public_html/vendor/slim/slim/Slim/Middleware/RoutingMiddleware.php(44): Slim\Middleware\RoutingMiddleware->performRouting() #1 /home/office/public_html/vendor/slim/slim/Slim/MiddlewareDispatcher.php(129): Slim\Middleware\RoutingMiddleware->process() #2 /home/office/public_html/vendor/slim/slim/Slim/Middleware/ErrorMiddleware.php(77): Psr\Http\Server\RequestHandlerInterface@anonymous->handle() #3 /home/office/public_html/vendor/slim/slim/Slim/MiddlewareDispatcher.php(129): Slim\Middleware\ErrorMiddleware->process() #4 /home/office/public_html/vendor/slim/slim/Slim/MiddlewareDispatcher.php(73): Psr\Http\Server\RequestHandlerInterface@anonymous->handle() #5 /home/office/public_html/vendor/slim/slim/Slim/App.php(209): Slim\MiddlewareDispatcher->handle() #6 /home/office/public_html/vendor/slim/slim/Slim/App.php(193): Slim\App->handle() #7 /home/office/public_html/application/Espo/Core/Api/Starter.php(77): Slim\App->run() #8 /home/office/public_html/application/Espo/Core/ApplicationRunners/Api.php(45): Espo\Core\Api\Starter->start() #9 /home/office/public_html/application/Espo/Core/Application/RunnerRunner.php(84): Espo\Core\ApplicationRunners\Api->run() #10 /home/office/public_html/application/Espo/Core/Application.php(78): Espo\Core\Application\RunnerRunner->run() #11 /home/office/public_html/public/api/v1/index.php(35): Espo\Core\Application->run() #12 {main} Tips: To display error details in HTTP response set "displayErrorDetails" to true in the ErrorHandler constructor.

    apiCorsAllowedOriginList
    apiCorsAllowedMethodList
    is configured, but it doesn't reach them in principle (/home/office/public_html/application/Espo/Tools/Api/Cors/DefaultHelper.php
    /home/office/public_html/application/Espo/Tools/Api/Cors/Middleware.php) - the request immediately goes to Slim and causes an error there: "The request method is not supported for the requested resource."

    you can request anything - the result is identical for any existing and not existing entities: api/v1/Task, api/v1/user, api/v1/adgdsgasdgasga etc


  • yuri
    Member
    • Mar 2014
    • 8797

    #2
    Setting config parameters is not enough. You need to create routes.
    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

    Comment

    • dimyy
      Active Community Member
      • Jun 2018
      • 581

      #3
      I hoped to get by with minimal damage

      Comment

      Working...