apache benchmark 工具 测试API 性能发送 Post 请求(Linux环境验证通过)
在apache bin 目录,在linux上执行命令:
./ab -n 1 -v 4 -p 'userlogin.txt' -T 'application/x-www-form-urlencoded' 'http://api.xxxxx.com/1/login'
说明:
(1) userlogin.txt 这里边记录是API的post请求的参数,放在和ab相同目录下(/opt/app/apache-2.4.12/bin),内容如下,
user_name=639493678400&password=A1111111&cheers=1
(2) 这个api只需要2个参数user_name,password,如果 参数文件中写成 user_name=639493678400&password=A1111111的话,还是报错,所以又多传了个参数cheers=1,这样就不报错了(和开发沟通下,说是占位符的问题),这点非常重要。
最后说明:在windows系统中,使用ab还是会报错,所以大家注意,这个篇文章是针对Linux系统的。
---------------------------------------------------- 被测试API -----------------------------------------------------
Login
Login with username and password credential.
URL: http://api.xxxxx.com/1/login
Request Method: POST
Request
Header
Field | Required | Description |
---|---|---|
User-Agent | O | User Agent of Client |
X-User-Agent | M | Extend User Agent of Client |
Body
Field | Required | Description |
---|---|---|
user_name | M | Name of user |
password | M | Password of user credential |
device | O | Login device id |
pwd_flag | O | 1:encrypted 0:non-encrypted(default) |
Body
Field | Data Type | Description |
---|---|---|
token | string | Access token for business interaction. |
expires_in | long | Valid time range of access token. (Seconds) |