I'm uploading a file to my flask backend and I can't figure out how to access the parameter values in the multipart form.
I can access the uploaded file easily by doing file = request.files['file']
but can't figure out a way to get the parameter values.
I've tried the following but haven't had any luck:
print(request.data['share'])
print(request.data['title'])
print(request.get('share'))
print(request.get('title'))