0

我正在使用 Test rail 提供的 API 来使用 java 提取信息。下面是我的程序。

APIClient client = new APIClient(" https://test.testrail.net/index.php?/runs/view/154 "); client.setUser("..");

client.setPassword("..");

JSONObject c = (JSONObject) client.sendGet("get_case/T54757");
System.out.println(c);

我下载了API并调用了上面提到的方法。但是每次json响应都返回null。任何机构都可以帮忙吗?

4

1 回答 1

0

根据 TestRail API V2- 需要使用 TYPE= Basic Authentication and UserName= and Password=<your testrail password or API key, if enabled>

出于安全原因,强烈建议启用 API 密钥并在使用代码访问时使用它。整个 API 调用集合,对我来说工作得很好。

于 2020-10-25T22:33:39.830 回答