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?.
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?.
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.