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.
URLhttp://api.xxxxx.com/1/login
Request Method: POST
Request
Header


FieldRequiredDescription
User-AgentOUser Agent of Client
X-User-AgentMExtend User Agent of Client

Body

FieldRequiredDescription
user_nameMName of user
passwordMPassword of user credential
deviceOLogin device id
pwd_flagO1:encrypted 0:non-encrypted(default)









Body

FieldData TypeDescription
tokenstringAccess token for business interaction.
expires_inlongValid time range of access token. (Seconds)