일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- AWS
- 자바
- 리팩토링
- Python
- design pattern
- 스프링부트
- 코틀린
- Winform
- mybatis
- MySQL
- 마이바티스
- git
- Java
- springboot
- VOA
- DataGridView
- 도커
- docker
- github
- c#
- 리액트
- Spring
- machine-learning
- 파이썬
- 스프링
- Spring Boot
- kubernetes
- Kotlin
- 쿠버네티스
- react
Archives
- Today
- Total
보뇨 다이어리
http 파일 사용시 유용한 커맨드 본문
반응형
IntelliJ 에서 지원해주지만 나름 괜찮아보여서 정리할겸 글씀
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | @server = http://localhost:3000 POST {{server}}/file-upload Content-Type: multipart/form-data; boundary=test-file-upload --test-file-upload Content-Disposition: form-data; name="file"; filename="test.txt" 여기에 텍스트 파일의 내용을 넣을 수 있습니다. --test-file-upload-- ### 실제 파일로 업로드 POST http://localhost:3000/file-upload Content-Type: multipart/form-data; boundary=test-file-upload --test-file-upload Content-Disposition: form-data; name="file"; filename="test.txt" < test.txt --test-file-upload-- ### 사진 업로드 POST http://localhost:3000/file-upload Content-Type: multipart/form-data; boundary=image-file-upload --image-file-upload Content-Disposition: form-data; name="file"; filename="cat.jpg" Content-Type: image/jpeg < cat.jpg --image-file-upload-- | cs |
반응형
'컴퓨터 관련 > 서버 정보' 카테고리의 다른 글
service temporarily unavailable 503 에러 (0) | 2020.08.04 |
---|---|
Kubernetes(쿠버네티스) 특정버전 설치하기 (0) | 2019.02.21 |
Docker(도커) 다운그레이드 하는 방법 (0) | 2019.02.21 |
unable to locate package kubeadm 에러 (0) | 2019.01.24 |
우분투 서버 동기화 하는 방법 (0) | 2018.11.27 |