l5Swagger.php
'securityDefinitions' => [
'securitySchemes' => [
'bearerAuth' => [ // Unique name of security
'type' => 'http',
'description' => 'A short description for oauth2 security
'scheme'=> 'bearer',
'in' => 'header',
'bearerAuth' => 'bearerAuth',
'bearerFormat'=> 'JWT'
],
'security' => [
'bearerAuth' => ['bearerAuth']
],
],
],
After adding Token and authorizing from Swagger UI When I execute any api, it starts loading and never ends. I followed all the instructions from darkaonline and open3.0 but still issue persists.
Could you please try it like this?
],