Java REST API経由でJIRAを管理しようとしています。以下は私の質問です: 1. RESTコードの呼び出し中にwebhook経由でURLに引数を渡すにはどうすればいいですか? 2. RESTコードにwebhook経由で渡されたリクエストを受け取るにはどうすればよいですか?REST API経由でJIRA webhooksを管理する
私はウェブフックを作成して、URLの私のREST APIと呼ばれるが、私の残りの部分のコードは
@Path("/JiraService")
public class JiraService {
@GET
@Path("/records")
public String getJiraRequest(InputStream response){
//req.getParameter("key");
BufferedReader br = null;
StringBuilder sb = new StringBuilder();
String line;
br = new BufferedReader(new InputStreamReader(response));
try {
while ((line = br.readLine()) != null) {
sb.append(line);
}
}
catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println("Inputstream::"+sb.toString());
return sb.toString();
}
のように見えますが、私はJIRAウェブフックに新たなんだと同様にhttp://localhost:8080/rest/JIRAIntegration/JIRAService/record
を提供しました残り。どんな助けも親切に評価されます。