Issue
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?
Solution
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.
Answered By - fino
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.