I have changed the HTTP
status code in my json
response using Laravel
. It’s working fine in localhost
but the same code not working WHM
server.
Laravel Version : 7
PHP Version : 7.4
My code
$encode = ['code' => 400,'message' => 'Token is Invalid','data' => []];
return Response::make(json_encode($encode,JSON_PRETTY_PRINT|JSON_FORCE_OBJECT),401)->header('Content-Type',"application/json");
Local host Response
Please anyone help to resolve this.
Thanks in advance..
3
Answers
i don’t worked with laravel so can’t help you about laravel
but you can solve your problem self with php
set your http code via header
try this
try this one