What is the default maximum url limit in Flask?

187 Views Asked by At

I am working with Flask and WSGI Server. I am getting 414 error when i fire call with large urls(above 8k characters).

I need to find out if it is limited by the Flask or the WSGI. Is there any default maximum size limit for urls in Flask?.

1

There are 1 best solutions below

0
On

If you want to process such a huge data, I think it’s better to use POST and send the data as a request body. Don’t know about flask limit, but you should check your browser limit too, if you use it in your project.