gpt4 book ai didi

java - 将带有 JSON 数据的授权 curl -u post 请求转换为等效的 RestTemplate

转载 作者:行者123 更新时间:2023-11-29 05:11:13 25 4
gpt4 key购买 nike

我正在使用 github api 使用 curl 命令创建存储库,如下所示,它工作正常。

curl -i -u "username:password" -d '{ "name": "TestSystem", "auto_init": true, "private": true, "gitignore_template": "nanoc" }' https://github.host.com/api/v3/orgs/Tester/repos

现在我需要通过 HttpClient 执行上面相同的 url,我在我的项目中使用 RestTemplate

我之前使用过 RestTemplate,我知道如何执行简单的 url,但不确定如何使用 RestTemplate 将上述 JSON 数据发布到我的 url -

RestTemplate restTemplate = new RestTemplate();

HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON);

// Create a multimap to hold the named parameters
MultiValueMap<String, String> parameters = new LinkedMultiValueMap<String, String>();
parameters.add("username", username);
parameters.add("password", password);

// Create the http entity for the request
HttpEntity<MultiValueMap<String, String>> entity =
new HttpEntity<MultiValueMap<String, String>>(parameters, headers);

ResponseEntity<String> response = restTemplate.exchange(url, HttpMethod.POST, entity, String.class);

谁能提供一个示例,我将如何通过向其发送 JSON 来执行上述 URL?

最佳答案

我没有时间测试代码,但我相信这应该可以解决问题。当我们使用 curl -u 传递凭据时,必须对其进行编码并与 Authorization header 一起传递,如此处所述 http://curl.haxx.se/docs/manpage.html#--basic . json 数据只是作为 HttpEntity 传递。

String encoding = Base64Encoder.encode("username:password");
HttpHeaders headers = new HttpHeaders();
headers.set("Authorization", "Basic " + encoding);
headers.setContentType(MediaType.APPLICATION_JSON); // optional

String data = "{ \"name\": \"TestSystem\", \"auto_init\": true, \"private\": true, \"gitignore_template\": \"nanoc\" }";
String url = "https://github.host.com/api/v3/orgs/Tester/repos";

HttpEntity<String> entity = new HttpEntity<String>(data, headers);
RestTemplate restTemplate = new RestTemplate();
ResponseEntity<String> response = restTemplate.exchange(url, HttpMethod.POST, entity , String.class);

关于java - 将带有 JSON 数据的授权 curl -u post 请求转换为等效的 RestTemplate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28390662/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com