zoukankan      html  css  js  c++  java
  • linux使用curl命令行进行接口测试

    cURL介绍
    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
    1
    2
    3
    4
    5
    6
    7
    linux command line 的参数常,同一個功能常会有兩個功能完全相同参数,一個是比較短的参数,前面通常是用-(一個-)導引符號,另一個比較長的参数,通常会用–(兩個-)導引符號

    在curl 使用說明
    在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&param2=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"}'
    1
    2
    3
    需先认证或登入才能使用的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
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    档案上传
    curl -i -X POST -F 'file=@/Users/kent/my_file.txt' -F 'name=a_file_name'
    1
    这个是通过 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
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    认证通过时,会回应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
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    可以把认证后的cookie存起來,重复使用

    curl -i --user kent:secret http://www.rest.com/api/foo' -c ~/cookies.txt
    1
    登入之前暂存的cookies,可以不用每次都认证

    curl -i http://www.rest.com/api/foo' -b ~/cookies.txt
    1
    例子:
    curl -l -H "Content-type: application/json" --request POST -d '{"businessChannel":"FDYH","sid":"B3398DD553974948B6AE97E8BAA299D8

  • 相关阅读:
    chrome/edge 自签名证书造成浏览器无法访问
    linux 下 取进程占用内存(MEM)最高的前10个进程
    总结记录一下我对YZ数据中台指标相关平台的理解感悟与思考
    史上最全之微信群发拼手气红包测试用例
    vue使用filterBy,orderBy实现搜索筛选功能
    前端处理防抖和节流
    箭头函数()=>{}与function的区别
    html不用任何控件上传文件
    Java必备知识--线程池
    Java必备知识--日志框架
  • 原文地址:https://www.cnblogs.com/zgq123456/p/10774889.html
Copyright © 2011-2022 走看看