我正在尝试从 Load Runner 运行 REST API,但无法做到。每次它抛出异常
Action.c(4): Error -26612: HTTP Status-Code=500 (Internal Server Error) for "http://ipaddress/LoyaltyApi/api1/loyaltycard/linkcard", Snapshot Info [MSH 1 1] [MsgId: MERR-26612]
我的代码:
Action()
{
lr_think_time(10);
web_custom_request("LinkCards",
"URL=http://ipaddress/LoyaltyApi/api1/loyaltycard/linkcard",
"Method=POST",
"Resource=0",
"EncType=application/json",
"Mode=HTTP",
"BodyFilePath=linkcards.json",
LAST);
return 0;
}
我已经使用 POST 参数测试了相同的 URL,POSTMAN
它工作正常,没有任何问题。
我对这项技术很陌生,所以无法解决这个问题。请帮忙。