1、使用curl命令訪問REST服務教程
如下引用內容來自Kent's Blog 2013-08-14 http://blog.kent-chiu.com/
curl 指令 rest
cURL 是很方便的Rest客戶端,能夠很方便的完成許多Rest API測試的需求,甚至,若是是須要先登入或認證的rest api,也能夠進行測試,利用curl指令,能夠送出HTTP GET, POST, PUT, DELETE, 也能夠改變 HTTP header來滿足使用REST API須要的特定條件。
curl的參數不少,這邊僅列出目前測試REST時經常使用到的:
-X/--request [GET|POST|PUT|DELETE|…] 使用指定的http method發出 http request
-H/--header 設定request裡的header
-i/--include 顯示response的header
-d/--data 設定 http parameters
-v/--verbose 輸出比較多的訊息
-u/--user 使用者帳號、密碼
-b/--cookie cookie
linux command line 的參數常,同一個功能常會有兩個功能徹底相同參數,一個是比較短的參數,前面一般是用-(一個-)導引符號,另外一個比較長的參數,一般會用--(兩個-)導引符號
在curl 使用說明
-X, --request COMMAND Specify request command to use
--resolve HOST:PORT:ADDRESS Force resolve of HOST:PORT to ADDRESS
--retry NUM Retry request NUM times if transient problems occur
--retry-delay SECONDS When retrying, wait this many seconds between each
--retry-max-time SECONDS Retry only within this period>
參數-X跟--request兩個功能是一樣的,因此使用時 ex:curl -X POST http://www.example.com/ 跟 curl --request POST http://www.example.com/ 是相等的功能
GET/POST/PUT/DELETE使用方式
-X 後面加 http method,
curl -X GET "http://www.rest.com/api/users"
curl -X POST "http://www.rest.com/api/users"
curl -X PUT "http://www.rest.com/api/users"
curl -X DELETE "http://www.rest.com/api/users"
url要加引號也能夠,不加引號也能夠,若是有非純英文字或數字外的字元,不加引號可能會有問題,若是是網碼過的url,也要加上引號
HEADER
在http header加入的訊息
curl -v -i -H "Content-Type: application/json" http://www.example.com/users
HTTP Parameter
http參數能夠直接加在url的query string,也能夠用-d帶入參數間用&串接,或使用多個-d
# 使用`&`串接多個參數
curl -X POST -d "param1=value1¶m2=value2"
# 也可以使用多個`-d`,效果同上
curl -X POST -d "param1=value1" -d "param2=value2"
curl -X POST -d "param1=a 0space"
# "a space" url encode後空白字元會編碼成'%20'為"a%20space",編碼後的參數能夠直接使用
curl -X POST -d "param1=a%20space"
post json 格式得資料
如同時須要傳送request parameter跟json,request parameter能夠加在url後面,json資料則放入-d的參數,然後利用單引號將json資料含起來(若是json內容是用單引號,-d的參數則改用雙引號包覆),header要加入」Content-Type:application/json」跟」Accept:application/json」
curl http://www.example.com?modifier=kent -X PUT -i -H "Content-Type:application/json" -H "Accept:application/json" -d '{"boolean" : false, "foo" : "bar"}'
# 不加"Accept:application/json"也能夠
curl http://www.example.com?modifier=kent -X PUT -i -H "Content-Type:application/json" -d '{"boolean" : false, "foo" : "bar"}'
需先認證或登入才能使用的service
許多服務,需先進行登入或認證後,才能存取其API服務,依服務要求的條件,的curl能夠透過cookie,session或加入在header加入session key,api key或認證的token來達到認證的效果。
session 例子:
後端若是是用session記錄使用者登入資訊,後端會傳一個 session id給前端,前端須要在每次跟後端的requests的header中置入此session id,後端便會以此session id識別前端是屬於那個session,以達到session的效果
curl --request GET 'http://www.rest.com/api/users' --header 'sessionid:1234567890987654321'
cookie 例子
若是是使用cookie,在認證後,後端會回一個cookie回來,把該cookie成檔案,當要存取須要任務的url時,再用-b cookie_file 的方式在request中植入cookie便可正常使用
# 將cookie存檔
curl -i -X POST -d username=kent -d password=kent123 -c ~/cookie.txt http://www.rest.com/auth
# 載入cookie到request中
curl -i --header "Accept:application/json" -X GET -b ~/cookie.txt http://www.rest.com/users/1
檔案上傳
curl -i -X POST -F 'file=@/Users/kent/my_file.txt' -F 'name=a_file_name'
這個是透過 HTTP multipart POST 上傳資料, -F 是使用http query parameter的方式,指定檔案位置的參數要加上@
HTTP Basic Authentication (HTTP基本認證)
若是網站是採HTTP基本認證, 能夠使用 --user username:password 登入
curl -i --user kent:secret http://www.rest.com/api/foo'
認證失敗時,會是401 Unauthorized
HTTP/1.1 401 Unauthorized
Server: Apache-Coyote/1.1
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-Frame-Options: DENY
WWW-Authenticate: Basic realm="Realm"
Content-Type: text/html;charset=utf-8
Content-Language: en
Content-Length: 1022
Date: Thu, 15 May 2014 06:32:49 GMT
認證通過時,會回應 200 OK
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-Frame-Options: DENY
Set-Cookie: JSESSIONID=A75066DCC816CE31D8F69255DEB6C30B; Path=/mdserver/; HttpOnly
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Date: Thu, 15 May 2014 06:14:11 GMT
能夠把認證後的cookie存起來,重複使用
curl -i --user kent:secret http://www.rest.com/api/foo' -c ~/cookies.txt
登入以前暫存的cookies,能夠不用每次都認證
curl -i http://www.rest.com/api/foo' -b ~/cookies.txt
相關資源
http://linux.about.com/od/commands/l/blcmdl1_curl.htm - curl 手冊
2、curl 訪問 CloudStack API 的用法
curl -i -X POST 'http://192.168.xx.10:8080/client/api?command=login&username=admin&password=password&domain=%2F&response=json' -c cookie.txt
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Set-Cookie: JSESSIONID=6C758A98BF38B857E3F811AEC91373C3; Path=/client
SET-COOKIE: sessionkey=mIcPK-uRcZl6DKIh2e4wrqxDXlw;HttpOnly
X-Content-Type-Options: nosniff
X-XSS-Protection: 1;mode=block
Content-Type: application/json;charset=UTF-8
Content-Length: 283
Date: Wed, 27 Apr 2016 07:27:15 GMT
{"loginresponse":{"username":"admin","userid":"6c2ede02-a48a-11e5-94b0-5cc4c27e3078","domainid":"4b510f52-a48a-11e5-94b0-5cc4c27e3078","timeout":1800,"account":"admin","firstname":"admin","lastname":"cloud","type":"1","registered":"false","sessionkey":"mIcPK-uRcZl6DKIh2e4wrqxDXlw"}}gordon@Gordon ~ $ curl -i -X POST -H 'X-Requested-With: XMLHttpRequest' http://192.168.xx.10:8080/client/api?command=listUsers&response=json
[root@master ~]# cat cookie.txt
# Netscape HTTP Cookie File
# http://curl.haxx.se/rfc/cookie_spec.html
# This file was generated by libcurl! Edit at your own risk.
192.168.14.10 FALSE /client FALSE 0 JSESSIONID EC77A06F53EB3C3D96A469DC740684E3
#HttpOnly_192.168.14.10 FALSE /client/ FALSE 0 sessionkey axIbZHAkxbBaM_cS519CQQJIY-k
[root@master ~]#
curl -i "http://192.168.xx.10:8080/client/api?command=listUsers&response=json" -b cookie.txt