Загрузите вложение в azure DevOps [REST API] - PullRequest
0 голосов
/ 27 мая 2020

Мне сложно добавить вложения в мое azure репозиторий DevOps через api ...

public static void putAttachments(Integer id) {
        try {
            URL url = new URL(
                    "https://dev.azure.com/marcoparra0034/AgileFr/_apis/wit/attachments?api-version=5.1&fileName=imageAs.png");
            HttpURLConnection con = ResApiMain.apiConnectionAttachments(PAT, url);
            File file = new File("C:\\Users\\marco.parra\\Pictures\\Screenshots\\new.png");
            String base64Image = encodeFileToBase64Binary(file);

//                  String jsonInputString = "[{\"op\":\"add\",\"path\":\"/fields/System.Title\",\"value\":\"" + "tpain"
//                          + "\"}]";
            base64Image = "[" + base64Image + "]";
            System.out.println("Base xs" + base64Image);

            try (OutputStream os = con.getOutputStream()) {
                byte[] input = Base64.decodeBase64(base64Image.getBytes("utf-8"));
                System.out.println(new String(input));
                os.write(input, 0, input.length);
            } catch (Exception ex) {
                System.out.println(ex.getMessage());
            }

            try (BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream(), "utf-8"))) {
                StringBuilder response = new StringBuilder();
                String responseLine = null;
                while ((responseLine = br.readLine()) != null) {
                    response.append(responseLine.trim());
                }
                System.out.println(response.toString());
            } catch (Exception ex) {
                System.out.println(ex.getMessage());
            }
            con.disconnect();
        } catch (Exception ex) {

        }

Это метод подключения

public static HttpURLConnection apiConnectionAttachments(String PAT, URL url) {
        HttpURLConnection con = null;
        try {
            String AuthStr = ":" + PAT;
            Base64 base64 = new Base64();

            String encodedPAT = new String(base64.encode(AuthStr.getBytes()));
            con = (HttpURLConnection) url.openConnection();
            con.setRequestProperty("Authorization", "Basic " + encodedPAT);
            con.setDoOutput(true);
            System.out.println("URL - " + url.toString());
            System.out.println("PAT - " + encodedPAT);

            // Image Requierements
//          con.setRequestProperty("Content-Type", "image/jpeg");
            con.setDoInput(true);
            con.setUseCaches(false);
            con.setRequestProperty("X-HTTP-Method-Override", "PATCH");
            con.setRequestMethod("POST");

            con.setRequestProperty("Content-Type", "application/octet-stream");
//      con.setRequestProperty("Accept", "application/json");

        } catch (Exception e) {
            System.out.println(e.getMessage());
        }
        return con;
    }

Когда я запустите это, он покажет следующий код ошибки

Server returned HTTP response code: 405 for URL: https://dev.azure.com/marcoparra0034/AgileFr/_apis/wit/attachments?api-version=5.1&fileName=imageAs.png

Обновление Я вижу, как работать с python и c#, но я не могу следовать этому логу c, чтобы создать вложение

https://github.com/Microsoft/azure-devops-python-api/blob/1bacd2a3f0128a6d184cf75e2c6f8859d46f270a/vsts/vsts/work_item_tracking/v4_1/work_item_tracking_client.py#L56

Пример ожиданий

{
  "id": "a5cedde4-2dd5-4fcf-befe-fd0977dd3433",
  "url": "https://dev.azure.com/fabrikam/_apis/wit/attachments/a5cedde4-2dd5-4fcf-befe-fd0977dd3433?fileName=imageAsFileAttachment.png"
}

https://docs.microsoft.com/en-us/rest/api/azure/devops/wit/attachments/create?view=azure-devops-rest-5.1

Любая помощь приветствуется. ..

1 Ответ

0 голосов
/ 28 мая 2020

Я решаю эту проблему, комментируя строку con.setRequestProperty ("X-HTTP-Method-Override", "PATCH");

...