Can't enable middleware CORS in Laravel 5.1.46
I'm struggling with this issue, i have an API made in Laravel, one of endpoints needs to be accesible to others servers that make a request, i read several forums, here, i and could'nt find a solution.
This the error that throws me in the front:
Access to fetch at 'http://localhost:8000/api/v1/auth/signup' from origin 'http://localhost:3000' has been blocked by CORS policy: Request header field Content-Type is not allowed by Access-Control-Allow-Headers in preflight response.
i tried to implement a cors middleware, this is the code:
<?php namespace AppHttpMiddleware;
use Closure;
class CORS {
/**
* Handle an incoming request.
*
* @param IlluminateHttpRequest $request
* @param Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
header("Access-Control-Allow-Origin: *");
// ALLOW OPTIONS METHOD
$headers = [
'Access-Control-Allow-Methods'=> 'POST, GET, OPTIONS, PUT, DELETE',
'Access-Control-Allow-Headers'=> 'Content-Type, X-Auth-Token, Origin'
];
if($request->getMethod() == "OPTIONS") {
// The client-side application can set only headers allowed in Access-Control-Allow-Headers
return Response::make('OK', 200, $headers);
}
$response = $next($request);
foreach($headers as $key => $value)
$response->header($key, $value);
return $response;
}
}
in kernel.php:
protected $routeMiddleware = [
'cors' => AppHttpMiddlewareCors::class,
in the routes.php:
Route::post('api/v1/auth/signup', 'ApiAuthApiController@signUpUser')->middleware(['cors']);
Why the cors middleware is not doing nothing?
From the server side there's no errors.
php laravel-5 cors
add a comment |
I'm struggling with this issue, i have an API made in Laravel, one of endpoints needs to be accesible to others servers that make a request, i read several forums, here, i and could'nt find a solution.
This the error that throws me in the front:
Access to fetch at 'http://localhost:8000/api/v1/auth/signup' from origin 'http://localhost:3000' has been blocked by CORS policy: Request header field Content-Type is not allowed by Access-Control-Allow-Headers in preflight response.
i tried to implement a cors middleware, this is the code:
<?php namespace AppHttpMiddleware;
use Closure;
class CORS {
/**
* Handle an incoming request.
*
* @param IlluminateHttpRequest $request
* @param Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
header("Access-Control-Allow-Origin: *");
// ALLOW OPTIONS METHOD
$headers = [
'Access-Control-Allow-Methods'=> 'POST, GET, OPTIONS, PUT, DELETE',
'Access-Control-Allow-Headers'=> 'Content-Type, X-Auth-Token, Origin'
];
if($request->getMethod() == "OPTIONS") {
// The client-side application can set only headers allowed in Access-Control-Allow-Headers
return Response::make('OK', 200, $headers);
}
$response = $next($request);
foreach($headers as $key => $value)
$response->header($key, $value);
return $response;
}
}
in kernel.php:
protected $routeMiddleware = [
'cors' => AppHttpMiddlewareCors::class,
in the routes.php:
Route::post('api/v1/auth/signup', 'ApiAuthApiController@signUpUser')->middleware(['cors']);
Why the cors middleware is not doing nothing?
From the server side there's no errors.
php laravel-5 cors
Is there a reason why you aren't using an existing off the shelf package for this?
– Matthew Daly
Nov 17 '18 at 18:16
@MatthewDaly Also i already tried barryvdh/laravel-cors, but didn't work, first it was some uncompatibilty with some dependencies (which i can't change , i don't have permission to modify those), then tried with an older version, that didn't work too.
– B.J. A.A.
Nov 17 '18 at 20:23
1
That's really messed up. Your boss doesn't want you using third party packages, yet presumably is OK with you using Laravel, which is made up of a load of third party packages. I imagine that the problem installingbarryvdh/laravel-cors
is due to Laravel 5.1 no longer being supported. I'd be inclined to at least consider upgrading to the current Laravel LTS version, 5.5, which isn't too hard.
– Matthew Daly
Nov 17 '18 at 20:35
add a comment |
I'm struggling with this issue, i have an API made in Laravel, one of endpoints needs to be accesible to others servers that make a request, i read several forums, here, i and could'nt find a solution.
This the error that throws me in the front:
Access to fetch at 'http://localhost:8000/api/v1/auth/signup' from origin 'http://localhost:3000' has been blocked by CORS policy: Request header field Content-Type is not allowed by Access-Control-Allow-Headers in preflight response.
i tried to implement a cors middleware, this is the code:
<?php namespace AppHttpMiddleware;
use Closure;
class CORS {
/**
* Handle an incoming request.
*
* @param IlluminateHttpRequest $request
* @param Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
header("Access-Control-Allow-Origin: *");
// ALLOW OPTIONS METHOD
$headers = [
'Access-Control-Allow-Methods'=> 'POST, GET, OPTIONS, PUT, DELETE',
'Access-Control-Allow-Headers'=> 'Content-Type, X-Auth-Token, Origin'
];
if($request->getMethod() == "OPTIONS") {
// The client-side application can set only headers allowed in Access-Control-Allow-Headers
return Response::make('OK', 200, $headers);
}
$response = $next($request);
foreach($headers as $key => $value)
$response->header($key, $value);
return $response;
}
}
in kernel.php:
protected $routeMiddleware = [
'cors' => AppHttpMiddlewareCors::class,
in the routes.php:
Route::post('api/v1/auth/signup', 'ApiAuthApiController@signUpUser')->middleware(['cors']);
Why the cors middleware is not doing nothing?
From the server side there's no errors.
php laravel-5 cors
I'm struggling with this issue, i have an API made in Laravel, one of endpoints needs to be accesible to others servers that make a request, i read several forums, here, i and could'nt find a solution.
This the error that throws me in the front:
Access to fetch at 'http://localhost:8000/api/v1/auth/signup' from origin 'http://localhost:3000' has been blocked by CORS policy: Request header field Content-Type is not allowed by Access-Control-Allow-Headers in preflight response.
i tried to implement a cors middleware, this is the code:
<?php namespace AppHttpMiddleware;
use Closure;
class CORS {
/**
* Handle an incoming request.
*
* @param IlluminateHttpRequest $request
* @param Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
header("Access-Control-Allow-Origin: *");
// ALLOW OPTIONS METHOD
$headers = [
'Access-Control-Allow-Methods'=> 'POST, GET, OPTIONS, PUT, DELETE',
'Access-Control-Allow-Headers'=> 'Content-Type, X-Auth-Token, Origin'
];
if($request->getMethod() == "OPTIONS") {
// The client-side application can set only headers allowed in Access-Control-Allow-Headers
return Response::make('OK', 200, $headers);
}
$response = $next($request);
foreach($headers as $key => $value)
$response->header($key, $value);
return $response;
}
}
in kernel.php:
protected $routeMiddleware = [
'cors' => AppHttpMiddlewareCors::class,
in the routes.php:
Route::post('api/v1/auth/signup', 'ApiAuthApiController@signUpUser')->middleware(['cors']);
Why the cors middleware is not doing nothing?
From the server side there's no errors.
php laravel-5 cors
php laravel-5 cors
edited Nov 17 '18 at 18:09
asked Nov 17 '18 at 17:58
B.J. A.A.
712832
712832
Is there a reason why you aren't using an existing off the shelf package for this?
– Matthew Daly
Nov 17 '18 at 18:16
@MatthewDaly Also i already tried barryvdh/laravel-cors, but didn't work, first it was some uncompatibilty with some dependencies (which i can't change , i don't have permission to modify those), then tried with an older version, that didn't work too.
– B.J. A.A.
Nov 17 '18 at 20:23
1
That's really messed up. Your boss doesn't want you using third party packages, yet presumably is OK with you using Laravel, which is made up of a load of third party packages. I imagine that the problem installingbarryvdh/laravel-cors
is due to Laravel 5.1 no longer being supported. I'd be inclined to at least consider upgrading to the current Laravel LTS version, 5.5, which isn't too hard.
– Matthew Daly
Nov 17 '18 at 20:35
add a comment |
Is there a reason why you aren't using an existing off the shelf package for this?
– Matthew Daly
Nov 17 '18 at 18:16
@MatthewDaly Also i already tried barryvdh/laravel-cors, but didn't work, first it was some uncompatibilty with some dependencies (which i can't change , i don't have permission to modify those), then tried with an older version, that didn't work too.
– B.J. A.A.
Nov 17 '18 at 20:23
1
That's really messed up. Your boss doesn't want you using third party packages, yet presumably is OK with you using Laravel, which is made up of a load of third party packages. I imagine that the problem installingbarryvdh/laravel-cors
is due to Laravel 5.1 no longer being supported. I'd be inclined to at least consider upgrading to the current Laravel LTS version, 5.5, which isn't too hard.
– Matthew Daly
Nov 17 '18 at 20:35
Is there a reason why you aren't using an existing off the shelf package for this?
– Matthew Daly
Nov 17 '18 at 18:16
Is there a reason why you aren't using an existing off the shelf package for this?
– Matthew Daly
Nov 17 '18 at 18:16
@MatthewDaly Also i already tried barryvdh/laravel-cors, but didn't work, first it was some uncompatibilty with some dependencies (which i can't change , i don't have permission to modify those), then tried with an older version, that didn't work too.
– B.J. A.A.
Nov 17 '18 at 20:23
@MatthewDaly Also i already tried barryvdh/laravel-cors, but didn't work, first it was some uncompatibilty with some dependencies (which i can't change , i don't have permission to modify those), then tried with an older version, that didn't work too.
– B.J. A.A.
Nov 17 '18 at 20:23
1
1
That's really messed up. Your boss doesn't want you using third party packages, yet presumably is OK with you using Laravel, which is made up of a load of third party packages. I imagine that the problem installing
barryvdh/laravel-cors
is due to Laravel 5.1 no longer being supported. I'd be inclined to at least consider upgrading to the current Laravel LTS version, 5.5, which isn't too hard.– Matthew Daly
Nov 17 '18 at 20:35
That's really messed up. Your boss doesn't want you using third party packages, yet presumably is OK with you using Laravel, which is made up of a load of third party packages. I imagine that the problem installing
barryvdh/laravel-cors
is due to Laravel 5.1 no longer being supported. I'd be inclined to at least consider upgrading to the current Laravel LTS version, 5.5, which isn't too hard.– Matthew Daly
Nov 17 '18 at 20:35
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53353989%2fcant-enable-middleware-cors-in-laravel-5-1-46%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53353989%2fcant-enable-middleware-cors-in-laravel-5-1-46%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Is there a reason why you aren't using an existing off the shelf package for this?
– Matthew Daly
Nov 17 '18 at 18:16
@MatthewDaly Also i already tried barryvdh/laravel-cors, but didn't work, first it was some uncompatibilty with some dependencies (which i can't change , i don't have permission to modify those), then tried with an older version, that didn't work too.
– B.J. A.A.
Nov 17 '18 at 20:23
1
That's really messed up. Your boss doesn't want you using third party packages, yet presumably is OK with you using Laravel, which is made up of a load of third party packages. I imagine that the problem installing
barryvdh/laravel-cors
is due to Laravel 5.1 no longer being supported. I'd be inclined to at least consider upgrading to the current Laravel LTS version, 5.5, which isn't too hard.– Matthew Daly
Nov 17 '18 at 20:35