gpt4 book ai didi

java.io.IOException : HTTP response code: 400 for URL 异常

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

这是我的示例代码:

String code = request.getParameter("authcode1");
String clientSecret = "xxxxxxxxxxxxx";
String newUrl = "https://accounts.google.com/o/oauth2/token";
String clientId = "xxxxxxxxxxxxxxx";
String callback = "http://localhost:8080/web/guest/home";

String tokenUrl = new String("https://accounts.google.com/o/oauth2/token");

StringBuffer params = new StringBuffer("");
params.append("code=" + URLEncoder.encode(code));
params.append("&client_id=" + clientId);
params.append("&client_secret=" + clientSecret);
params.append("&redirect_uri=" + callback);
params.append("&grant_type=authorization_code");

try
{
// Send data
URL url = new URL(tokenUrl.toString());
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("POST");
conn.setDoOutput(true);
conn.setRequestProperty("Content-Type","application/x-www-form-urlencoded");
conn.setRequestProperty("Content-Length", "0");
conn.connect();

InputStream is;
if (conn.getResponseCode() != 200) {
is = conn.getInputStream();
} else {
is = conn.getErrorStream();
}

//URLConnection conn = url.openConnection();
//conn.setDoOutput(true);
OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
wr.write(params.toString());
wr.flush();

// Get the response
BufferedReader rd = new BufferedReader(new InputStreamReader(is));
String line;
while ((line = rd.readLine()) != null)
{
System.out.println("-----" + line);
}
wr.close();
rd.close();
}
catch (Exception e)
{
e.printStackTrace();
}

我在 Tomcat 中遇到以下异常:

java.io.IOException: Server returned HTTP response code: 400 for URL: https://accounts.google.com/o/oauth2/token
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
at sun.net.www.protocol.http.HttpURLConnection$6.run(HttpURLConnection.java:1368)
at java.security.AccessController.doPrivileged(Native Method)
at sun.net.www.protocol.http.HttpURLConnection.getChainedException(HttpURLConnection.java:1362)

请帮我看看我做错了什么?为什么我收到 java.io.IOException:HTTP 响应代码:URL 异常 400?

最佳答案

首先,这是不正确的:

if (conn.getResponseCode() != 200) {
is = conn.getInputStream();
} else {
is = conn.getErrorStream();
}

应该是

if (conn.getResponseCode() == 200) {
is = conn.getInputStream();
} else {
is = conn.getErrorStream();
}

您的问题在这一行:

conn.setRequestProperty("Content-Length", "0");

当您在 HTTP 消息中附加了实体主体时,您不能发送 Content-Length0

而是将其设置为

conn.setRequestProperty("Content-Length", params.toString().length());

关于java.io.IOException : HTTP response code: 400 for URL 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10976028/

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