Skip to content
Advertisement

Laravel Http::post : Am I (really) sending a “bad request”?

I’m new with Laravel, not sure of this one.

I’try to retrieve this token from a FileMaker API in my Laravel app. In order to obtain it, I use a custom authentication service in my AuthServiceProvider with the Auth::viaRequest method. The request inside the method is quit simple. It’s just a basic auth POST request to the api url. The API is supposed to send me back a token.

Nevertheless, when I log() the request, I get a “bad request” error 400 and a code 960 error (probably from the FileMaker API). The 960 error returns

‘undefined’: Expected type object but found type array

I’dont get what is wrong, when I do a simple GET request in the viaRequest method it works and, when I test the POST request in Postman, it also works. I’ve compared the request’s headers in both systems (Laravel and Postman), the parameters of the request are identical…

Here is the service provider code:

JavaScript

This is the log:

JavaScript

Thank you guys

Advertisement

Answer

Something was missing in the body. I’ve added to my request an empty json() in the body

JavaScript

Now it works. Thank you @shaedrich

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement