Как я могу опубликовать ошибку в jira с httpclient после входа в систему?
Я вхожу в jira из этого кода теперь я хочу опубликовать ошибку в jira после входа в систему
HttpPost httpost = new HttpPost("https://id.atlassian.com/login?continue=https://jira.atlassian.com/secure/Dashboard.jspa&application=jac");
List<NameValuePair> nvps = new ArrayList<NameValuePair>();
nvps.add(new BasicNameValuePair("username", "sxxxxxxx@live.com"));
nvps.add(new BasicNameValuePair("password", "xxxxxxxxxn"));
nvps.add(new BasicNameValuePair("csrfToken", xcrfTokenVal));
nvps.add(new BasicNameValuePair("continue", "https://jira.atlassian.com/secure/Dashboard.jsp"));
nvps.add(new BasicNameValuePair("application", "jac"));
httpost.setEntity(new UrlEncodedFormEntity(nvps));
response = httpclient.execute(httpost);
System.out.println("Response " + response.toString());
entity = response.getEntity();
//System.out.println("Double check we've got right page " + EntityUtils.toString(entity));
System.out.println("Response from : " + response.getStatusLine());
После входа я хочу отправить сообщение об ошибке из нашего инструмента в jira.... ребята, помогите мне...
1 ответ
Open google chrome 'developer tool' - >'Network'.
Then make a dump bug reporting via chrome.
You will see a new POST in the list, select it and check the detail of the post.
for example: cookie, post data, request URL.
Then simulate the same thing in Java code.
Login - > Send the post request.