Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> Linux命令行下使用CURL

Linux命令行下使用CURL

日期:2017/2/7 14:42:59      編輯:Linux教程
 

向服務器POST方式提交數據或文件
# POST方式提交數據
$ curl -d '{數據,字符串內容}' http://user:pass@myhost/{uri}
# POST方式提交文件
$ curl -d @{文件名} http://user:pass@myhost/{uri}
# POST 帶KEY的JSON數據
$ curl -d "data=[{\"id\":1,\"money\":1}]" {url}

Copyright © Windows教程網 All Rights Reserved