Is there any way to send multipart form data using GET request?
For Example : Can we convert something like below?
<form action="/action_page_binary.asp" method="post" enctype="multipart/form-data">
First name: <input type="text" name="fname"><br>
to
<form action="/action_page_binary.asp" method="get" enctype="multipart/form-data">
First name: <input type="text" name="fname"><br>
Can we do like this? If not, do we have any alternative in terms of sending multipart formdata into GET request?
I need this because there is functionality to upload a file but POST method is not supported by the server.