curl 생산 환경 에서 자주 사용 되 는 총 결

1. 디 버 깅 인터페이스 도구
1、postman
2、postwoman    https://postwoman.io/

2. 작은 기능 디 버 깅 curl
2.1 get  
    # curl+       
    curl 192.168.48.101:8081/api/testGet
    #             -v
    curl 192.168.48.101:8081/api/testGet -v
2.2 post  
     -X          -d       
    curl 192.168.48.101:8081/api/testPost -v -X POST -d "temp1=aa&temp2=bb"
       -H        
    curl 192.168.48.101:8081/api/testPost -X POST -H "Content-Type:application/json" -d '{"temp1":"aa","temp2":"bb"}'
2.3    
	curl 192.168.48.101:8081/api/upTest -F "file=@/home/pic/test1.png" -H "token: 123" -v	
2.4        ssl    https  
     curl -k https://192.168.48.101:8081/api/testGet
    :https://blog.csdn.net/FungLeo/article/details/80703365

좋은 웹페이지 즐겨찾기