尝试将新问题发布到GitHub存储库时出现错误“ 400错误的请求”

时间:2019-01-25 16:45:33

标签: java spring api github http-status-code-400

我正在用spring构建一个网络,该网络将允许用户查看存储库,他们的问题并根据需要添加新问题。当用户想要创建一个新的问题时,出现该问题。我收到“错误400错误的请求”,我不能理解为什么。

我尝试通过URL参数发送请求,但它也不起作用。我也尝试使用ObjectMapper自动创建主体,但是得到了相同的结果。因此,我自己建立身体,但是……又一次得到相同结果。

在注释“ XXX”的行中,该软件发生故障,并且在网络上向我显示了所提到的错误。

@PostMapping("newIssue/{user}/{repo}/{fullName}")
public String registerUser(@PathVariable String user, @PathVariable String repo, @PathVariable String fullName, @Valid NewIssue newissue, Errors errors, Model model, OAuth2AuthenticationToken authentication) throws JsonProcessingException {

    //To debug
    System.out.println("### Registering issue");

    //Check errors
    List<String> errorsStrings = new ArrayList<>();
    errors.getAllErrors().forEach(e->errorsStrings.add(e.getDefaultMessage()));
    model.addAttribute("errors", errorsStrings);
    model.addAttribute("newissue", newissue);
    if(errors.hasErrors()) {
        //To debug
        System.out.println("### HAS ERRORS");
        for (String err: errorsStrings )
            System.out.println("    " + err);
        //If has errors show again the page
        return "newIssue";
    }

    //To debug
    System.out.println("### Does not have ERRORS");

    //Create the client variable
    OAuth2AuthorizedClient client = authorizedClientService.loadAuthorizedClient( authentication.getAuthorizedClientRegistrationId(), authentication.getName() );

    //Construct the necessary headers
    HttpHeaders headers = new HttpHeaders();
    headers.add(HttpHeaders.AUTHORIZATION, "token " + client.getAccessToken().getTokenValue());
    headers.add(HttpHeaders.ACCEPT, "application/vnd.github.v3+json");

    //Construct the html petition's body
    ObjectMapper mapper = new ObjectMapper();
    //String body = mapper.writeValueAsString(newissue);
    String body =
            "{\n" +
            "  \"title\": \"" + newissue.getTitle() + "\",\n" +
            "  \"body\": \"" + newissue.getBody() + "\",\n" +
            "  \"assignees\": [],\n" +
            "  \"milestone\": none,\n" +
            "  \"labels\": []\n" +
            "}"
    ;

    //Merge the header and the body
    HttpEntity<String> request = new HttpEntity<String>(body, headers);

    //To debug
    System.out.println("### Going to send post: ");
    System.out.println(body);

    //Send the issue to the api
    RestTemplate restTemplate = new RestTemplate();
    ResponseEntity<String> response = restTemplate.exchange("https://api.github.com/repos/" + user + "/" + repo + "/issues", HttpMethod.POST, request, String.class); //XXX

    //To debug
    System.out.println("### Post sent");

    //To debug
    System.out.println("### RESPONSE: " + response);

    //Go to the repos' issues webpage
    return "redirect:issues/"+user+"/"+repo+"/"+fullName;
}

我希望此方法可以在存储库中创建新问题,然后重定向到存储库的问题列表。 我检查过身体,对我来说似乎是正确的:

{
  "title": "TestTitle",
  "body": "TestBody",
  "assignees": [],
  "milestone": none,
  "labels": []
}

我全部都查阅了GitHub api文档:https://developer.github.com/v3/issues/#create-an-issue

2 个答案:

答案 0 :(得分:2)

根据您在“创建问题”下提供的文档,“里程碑”的值应为Integer。因此,查看您的请求,没有一个不是整数。我不确定您会在请求中提供什么int,但我不相信'none'会起作用。

   String body =
        "{\n" +
        "  \"title\": \"" + newissue.getTitle() + "\",\n" +
        "  \"body\": \"" + newissue.getBody() + "\",\n" +
        "  \"assignees\": [],\n" +
        "  \"milestone\": 0,\n" +
        "  \"labels\": []\n" +
        "}"
   ;

这将创建以下正文:

{
    "title": "TestTitle",
    "body": "TestBody",
    "assignees": [],
    "milestone": 0,
    "labels": []
}

此外,在“列出存储库的问题”部分中,似乎他们提到只使用“ none”作为字符串。

答案 1 :(得分:0)

正如布兰登(Brandon)和内普拉尼·乌达伊(NeplatnyUdaj)所说,该问题可能与“里程碑线”有关,因为它必须是整数。我输入“ none”是因为我不想添加任何里程碑,如果要在创建问题后删除里程碑,则使用该关键字。

感谢回答我的人,我发现您可以删除“里程碑线”,因为在问题的创建过程中无法告诉API“没有里程碑”(尽管您可以删除所有根据文档创建之后的里程碑)。

谢谢大家!