gpt4 book ai didi

java - 使用 Apache http post 查询参数

转载 作者:行者123 更新时间:2023-12-02 11:15:19 25 4
gpt4 key购买 nike

我正在尝试访问一个 API,该 API 通过 Apache http post 返回带有查询参数的 Json 内容。端点在浏览器上工作正常,但我的发布请求完全忽略查询参数。它在浏览器上运行完全正常。

HttpPost post = new HttpPost(url);// http://hostname:port/type/endpoint1
post.addHeader("content-type","text/plain");
post.addHeader("Accept","text/plain");
post.setEntity(new StringEntity("?key=value"));
response = client.execute(post);

这仅返回 url 的响应。并且完全忽略了参数。

最佳答案

content-type 更改为 application/x-www-form-urlencoded,并从正文中删除前导 ?

关于java - 使用 Apache http post 查询参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50324925/

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