我很难使用Java HttpURLConnection。香港专业教育学院尝试使用HttpClient,但也失败了。
我要做的就是这个:
curl -H "Authorization: Bearer 1111111111" https://company.aha.io/api/v1/features/APP-1
1111111111
是API密钥。
到目前为止,这是我的代码。
URL url = new URL("https://company.aha.io/api/v1/features/APP-1");
connection = (HttpsURLConnection) url.openConnection();
//add request header for authentication
connection.setRequestProperty("Authorization", "Bearer " + token);
connection.connect();
System.out.println(connection.getResponseCode());
我不断收到404代码。 谢谢您的帮助。