I'm trying creating an API that takes a huge text as input using Flask in python.
When I input a small text it works and I get response [200], However for large text I get response [404] as if the route doesn't exist. How can I get over this?
I'm trying creating an API that takes a huge text as input using Flask in python.
When I input a small text it works and I get response [200], However for large text I get response [404] as if the route doesn't exist. How can I get over this?
The url has a maximum length limit. I suggest you use the post method and pass the text content as the request body.
If you need Code, just comment and let me know.