📜  获取 crumbIssuer - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:15.735000             🧑  作者: Mango

代码示例1
// left out: you need to authenticate with user & password -> sample below
HttpGet httpGet = new HttpGet(jenkinsUrl + "crumbIssuer/api/json");
String crumbResponse = toString(httpclient, httpGet);
CrumbJson crumbJson = new Gson().fromJson(crumbResponse, CrumbJson.class);