curl进行REST服务请求

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  

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,也要加上引號

在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"}'

需先认证或登入才能使用的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

例子:

curl -l -H "Content-type: application/json" --request POST -d '{"businessChannel":"FDYH","sid":"B3398DD553974948B6AE97E8BAA299D8","qrid":"101"}'  http://192.168.0.185:9091/credit-loan-gateway-h5-finance-standard/loan/application/query/merchantInfoByQrID
要使用Django Rest Framework接收后台POST请求进行登录,可以按照以下步骤操作: 1. 创建API视图 在Django项目app的views.py文件中定义API视图,例如: ``` from rest_framework.views import APIView from rest_framework.response import Response from rest_framework import status from django.contrib.auth import authenticate, login class LoginView(APIView): def post(self, request): username = request.data.get('username') password = request.data.get('password') user = authenticate(username=username, password=password) if user: login(request, user) return Response({'message': '登录成功'}, status=status.HTTP_200_OK) else: return Response({'message': '用户名或密码错误'}, status=status.HTTP_401_UNAUTHORIZED) ``` 在这个例子中,我们定义了一个LoginView的API视图,并在其中实现了一个POST请求处理方法。我们获取了请求中的用户名和密码,并使用Django内置的authenticate方法进行用户验证。如果验证成功,则调用Django内置的login方法进行登录,并返回一个包含登录成功消息的JSON响应;如果验证失败,则返回一个包含用户名或密码错误消息的JSON响应。 2. 添加API路由 在Django项目的urls.py文件中添加API路由,例如: ``` from django.urls import path from .views import LoginView urlpatterns = [ path('api/login', LoginView.as_view(), name='login'), ] ``` 在这个例子中,我们为LoginView API视图添加了一个路由。 3. 测试API 启动Django项目后,可以使用curl或Postman等工具测试API: ``` curl -X POST -H "Content-Type: application/json" -d '{"username": "user1", "password": "password123"}' http://localhost:8000/api/login/ ``` 如果成功,应该能收到以下响应: ``` {"message": "登录成功"} ``` 在这个例子中,我们发送了一个包含用户名和密码的POST请求来尝试进行登录。请注意,我们在请求中包含了Content-Type头,以确保Django Rest Framework可以正确解析请求中的JSON数据。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值