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