0

I call a RESTFul API but the HTTP POST got a limit because am sending JSON over and it is cutting off part of the JSON requests... What can I do to resolve this problem?

RESTFUl API is written in PHP and accept the JSON in a variable via HTTP POST requests.

Lennie
  • 1,999
  • 4
  • 27
  • 42

1 Answers1

0

You can modify the size of request accepted from PHP on your server.

Look this discussion What is the size limit of a post request?

Community
  • 1
  • 1
MaTTP
  • 953
  • 2
  • 12
  • 27