Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix example curl command #281

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

fix example curl command #281

wants to merge 1 commit into from

Conversation

abbbi
Copy link

@abbbi abbbi commented Jul 6, 2024

The example curl command shown for the multi file upload example doesnt work, adjust command accordingly.

example wont work:

curl -X POST http://localhost:8080/upload   -F "upload[]=@/tmp/file1"   -F "upload[]=@/tmp/file2"   -H "Content-Type: multipart/form-data"
Uploaded successfully 0 files with fields name= and email=.

working command:

curl -X POST http://localhost:8080/upload   -F "files=@/tmp/file1"   -F "files=@/tmp/file2"   -H "Content-Type: multipart/form-data"
Uploaded successfully 2 files with fields name= and email=.

The example curl command shown for the multi file upload example doesnt
work, adjust command accordingly.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant