-
-
Save technoknol/1a35ca4b150215f491d5c807940bd4ef to your computer and use it in GitHub Desktop.
<?php | |
# File: app\Http\Middleware\CORS.php | |
# Create file with below code in above location. And at the end of the file there are other instructions also. | |
# Please check. | |
namespace App\Http\Middleware; | |
use Closure; | |
class CORS { | |
/** | |
* Handle an incoming request. | |
* | |
* @param \Illuminate\Http\Request $request | |
* @param \Closure $next | |
* @return mixed | |
*/ | |
public function handle($request, Closure $next) { | |
// return $next($request); | |
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, Authorization' | |
]; | |
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; | |
} | |
} | |
# File:: app\Http\Kernel.php | |
# Add following line in `protected $middleware` Array. | |
# \App\Http\Middleware\CORS::class | |
# And following in `protected $routeMiddleware` Array | |
# 'cors' => \App\Http\Middleware\CORS::class | |
By far best solution, was running into random/sporadic issues with Barry's laravel-cors, found this and worked perfectly every time.
👍
had the same error. i run auto load but still can't work it out
ReflectionExceptionClass App\Http\Middleware\CORS does not exist
Thanks mate!
Wasted hours to find a solution for this...
thanks get it working namespace was the issue
hey guys does anyone knows how to tackle the issue of CSRF-TOKE I'll been trying to fixed this for days now but can't get through. I don't know what could be wrong, im having this error. 500 (Internal Server Error) . im runing laravel 5.4 here's is the bit of ajax code.
var requestData= JSON.stringify(dataArray);
$.ajaxSetup({
headers:{'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')},
});
$.ajax({
data:{"data":requestData, "method":'POST',"_token":'{{csrf_token()}}'},
type:"POST",
url: "result",
dataType:"JSON",
success: function(data) {
$("#tb1").html(data);
}
});
Awesome.
But I had to remove
header("Access-Control-Allow-Origin: *");
and add it to
$headers = [
"Access-Control-Allow-Origin" => "*",
// Other Options
];
instead to make it work with my tests.
Awesome... Thanks mofrubel, this works for me too
The best solution that i found until now.. it works perfectly.. Thanks a Lot Dude..