gpt4 book ai didi

android - 如何在 httppost/httpget 请求中设置 header

转载 作者:太空宇宙 更新时间:2023-11-03 11:57:03 25 4
gpt4 key购买 nike

我有一个类似“post -H 'Authorization: Token token="2hwhdh443hdhfh43j3jdej3j3"' 的网络服务。如何在 httpPost/get 请求中设置此 header 。

我的代码在这里-

HttpClient client = new DefaultHttpClient();
HttpPost request = new HttpPost(MainActivity.baseUrl
+ "messages");
request.setHeader(new BasicHeader("Content-Type","application/json"));
request.setHeader(new BasicHeader("Authorization: Token","token= 2hwhdh443hdhfh43j3jdej3j3"));

response = client.execute(request);

但这给出了 HTML 响应。请任何人指导我。

最佳答案

尝试删除“Content-Type” header 并将“Authorization”修改为 -

request.addHeader("Authorization","Token token=2hwhdh443hdhfh43j3jdej3j3");

为我工作。

关于android - 如何在 httppost/httpget 请求中设置 header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27483535/

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