我几天前在Uploadcare设置了一个免费帐户。我一直试图测试那里的REST API。因此,我必须使用此URL: https://api.uploadcare.com/files/:uuid/ 有GET请求。 我尝试过发送JAVA的请求。
public String getResponse(String urlToRead) {
URL url;
HttpURLConnection conn;
BufferedReader rd;
String line;
String result = "";
try {
url = new URL(urlToRead);
conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
//add request header
conn.setRequestProperty("Accept", "application/vnd.uploadcare-v0.3+json");
conn.setRequestProperty("Date", "Fri, 09 Feb 2013 01:08:47 -0000");
conn.setRequestProperty("Authorization", "Uploadcare.Simple publicKey:privateKey");
rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
while ((line = rd.readLine()) != null) {
result += line;
}
rd.close();
} catch (IOException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
return result;
}
public static void main(String args[]) {
UploadCareTesting c = new UploadCareTesting();
String url = "https://api.uploadcare.com/files/4100d0d6-fa27-475d-9f7a-ef218d718b5e~1/";
System.out.println(c.getHTML(url));
}
然而我一直得到这个错误:
java.io.FileNotFoundException:
https://api.uploadcare.com/files/4100d0d6-fa27-475d-9f7a-ef218d718b5e~1/
我查看了代码,试图查看是否有任何错误。但是,Uploadcare文档说我可以到https://api.uploadcare.com。并提出示例请求,但页面返回时出现错误,说“&34;某些东西不起作用。这是我们的错,不是你的。 我们很抱歉。"
其他人有这个问题,并找到了如何绕过它? (我已经收到了关于Uploadcare支持的消息,但我还没有听到任何回复)
答案 0 :(得分:2)
这有两个部分:
4100d0d6-fa27-475d-9f7a-ef218d718b5e~1
不是file UUID,而是file group UUID。因此,您希望在https://api.uploadcare.com/groups/4100d0d6-fa27-475d-9f7a-ef218d718b5e~1/
处请求群组信息。
这似乎是一个错误,我想请你直接联系我们来解决这个问题。
p.s。:我们的REST API was not down