簡體   English   中英

從Java應用程序到TFS REST API的HTTP PATCH請求收到400(錯誤請求)錯誤

[英]HTTP PATCH request to TFS REST API from java application getting 400 (bad request) error

我正在嘗試通過Java代碼向TFS REST API發出HTTP PATCH請求。 但是我得到了400個錯誤的請求代碼。 我的POST和GET方法從Java運行。

我有以下代碼:

public static void patchCenas() throws MalformedURLException, IOException{
    URL url = new URL("http://servername:8080/tfs/DefaultCollection/Testing%20Project/_apis/wit/workitems/$Bug?api-version=1.0");
    HttpURLConnection connection = (HttpURLConnection) url.openConnection();
    connection.setConnectTimeout(15000);//15 secs
    connection.setReadTimeout(15000);//15 secs

    connection.setRequestProperty("X-HTTP-Method-Override", "PATCH");
    connection.setRequestMethod("POST");
    connection.setDoOutput(true);
    connection.setRequestProperty("Content-Type", "{\"Content-Type\":\"application/json-patch+json\"}");

    OutputStreamWriter out = new OutputStreamWriter(connection.getOutputStream());  
    out.write(
            "[" +
                  "{"+
                      "\"op\":\"add\"," +
                      "\"path\":\"/fields/System.Title\"," +
                      "\"value\":\"Bug with PATCH via java (Test)\""+
                  "}"+
            "]");
    out.flush();
    out.close();

    int res = connection.getResponseCode();
    System.out.println(connection.getResponseMessage());
    System.out.println(res);

    BufferedReader br = new BufferedReader(new InputStreamReader(((HttpURLConnection) url.openConnection()).getInputStream(), Charset.forName("UTF-8")));
    //InputStream is = connection.getInputStream();
    //BufferedReader br = new BufferedReader(new InputStreamReader(is));
    String line = null;
    while((line = br.readLine() ) != null) {
        System.out.println(line);
    }
    connection.disconnect();
}

消息:

響應消息:錯誤的請求

響應碼:400

行輸出:

{
   "fields": {
      "System.WorkItemType": "Bug",
      "System.AreaPath": "Testing Project",
      "System.TeamProject": "Testing Project",
      "System.IterationPath": "Testing Project",
      "System.State": "New",
      "System.Reason": "New defect reported",
      "Microsoft.VSTS.Common.StateChangeDate": "1753-01-01T00:00:00Z",
      "System.ChangedBy": "name>",
      "System.CreatedBy": "name>",
      "Microsoft.VSTS.Common.Priority": 2,
      "Microsoft.VSTS.Common.Severity": "3 - Medium",
      "Microsoft.VSTS.Common.ValueArea": "Business"
   },
   "_links": {
      "workItemType": {
         "href": "http://servername:8080/tfs/DefaultCollection/xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx/_apis/wit/workItemTypes/Bug"
      },
      "fields": {
         "href": "http://servername:8080/tfs/DefaultCollection/_apis/wit/fields"
      }
   },
   "url": "http://servername:8080/tfs/DefaultCollection/_apis/wit/workItems"
}

我的代碼有問題嗎?

我測試了您上面發布的代碼段。 內容類型不正確。 更改為:

connection.setRequestProperty("Content-Type", "application/json-patch+json"); 

它不需要{}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM