I have two apps build on Laravel 8. They communicate each other by standard Guzzle Client. One of that app sent by POST request, array with 98 elements. Every element is a array with 12 short text items as associated array.
When second app receive request then there is only 91 elements and the last one contain only 1 value.
Why this request is cutted?
Data structure:
[
'users' => [
[], [], [], .....
]
]
When I sent the same array but before I encoded it by json_encode. Then second app receive full content. So why array is cutted?
My "post_max_size" is set to 8MB.
Regards