我正在使用触发器URL来运行在Runscope上创建的测试用例。作为回应,我只获得了Runscope文档中显示的详细信息。例如。
回应样本数据:
{
"data": [],
"error": null,
"meta": {"status": "success"}
}
但我需要从服务器检索的响应主体中的数据以获取请求。例如。
{
"Status": "OK",
"Body": [{"userId": 12345,"sessionId": "abcd:1234"}]
}
我正在使用HttpRequest
和HttpResponse
。