Lumen not returning large data set with post API call
Hey Techies, I am using Lumen for API service call. I am using Laravel 5.3 for the frontend web and lumen for creating API which will sit in top of my DB. When I call the get method to lumen it is returning the large Data. But when I am calling it through post method it is only returning limited data (with limit) otherwise just a blank.
There are around 100 fields per records when I put filter limit with 2 or 3 records its fetching otherwise giving a blank response also it does not throw any error message in log file.
Depending how many items you're submitting through your POST request you might be hitting PHP's default limit. Look in your php.ini file and search for 'max_input_vars' and see what the setting is, try adjusting it to allow more and see if you have any luck. You might also look at 'post_max_size' in php.ini and adjust it if need be.
As always, if you can provide more detail (code examples, error response, etc.) it's helpful.