Reputation: 11
I have an angular app where I send data (via json) to my laravel server. My server is on a VM(ubuntu):
This is where I send it to the server from the angular app.
this.http.post(this.loginURL, requestBody, options)
On my laravel server I have the route:
Route::get('patientlogin','UploadController@login');
And the controller method
public function login(Request $request){
// error_reporting(-1); // prints every error, warning, etc
error_reporting(0); // no output at all
// set content-type of response to json
header('Content-Type: application/json');
// import Auth class and custom functions
// require_once('custom_functions.php');
$LOGIN_LOG_FILE = "login1.log";
$AUTH_HEADERS_FILE = "auth-headers1.txt";
/*
php://input is raw input, regardless of header field "content-type"
The PHP superglobal $_POST, only is supposed to wrap data that is either
application/x-www-form-urlencoded or multipart/form-data-encoded
http://stackoverflow.com/a/8893792
When sending only a JSON, $_POST etc will not be populated and php://input has to be used
in the php scripts
http://stackoverflow.com/questions/1282909/php-post-array-empty-upon-form-submission
http://php.net/manual/de/wrappers.php.php
*/
$content = $request->instance();
$json_raw = $content->json()->all();
$json = json_decode($json_raw, true);
/* <-- DEBUGGING START TODO delete */
//read the header, where username and password are supposed to be in
$headers = apache_request_headers();
//print the contents of the headers array in a neat structure and log them
$headersPrintable = print_r($headers, true);
file_put_contents($AUTH_HEADERS_FILE, $headersPrintable, FILE_APPEND);
$request = print_r($_REQUEST, true);
$post = print_r($_POST, true);
file_put_contents("auth-req.txt", $request, FILE_APPEND);
file_put_contents("auth-post.txt", $post, FILE_APPEND);
file_put_contents("auth-req-json.txt", $json_raw, FILE_APPEND);
file_put_contents("auth-req-json_decoded.txt", $json, FILE_APPEND);
/* DEBUGGING END --> */
$valid = false;
$username = "";
//check if username and passord exist in the json-decoded version of php://input
if(array_key_exists("username", $json) && array_key_exists("password", $json)) {
$username = $json["username"];
$password = $json["password"];
$valid = Auth::checkCredentials($username, $password);
}
$response = array(
"username" => $username,
"valid" => $valid
);
echo json_encode($response);
//exit();
}
Now when I run the app I've get the error:
POST http://ip/patientlogin 405 (Method Not Allowed)
When I change the get in my web.php to post I get this error:
polyfills.js:1 POST http://ip/patientlogin 500 (Internal Server Error)
and when I try to call the url in the browser:
MethodNotAllowedHttpException in RouteCollection.php line 218:
Someone any idea what the error could be or what am I doing wrong?
Upvotes: 0
Views: 1745
Reputation: 1977
HTTP GET cannot have a body(it can, technically, but it's not meant to be). So if you're sending a body in the request you should to use post or put.
You are getting method not allowed because you configured your route to use GET not POST.
Change
Route::get
To
Route::post
That should solve it
Upvotes: 1