gpt4 book ai didi

java - Imgur API 上传

转载 作者:行者123 更新时间:2023-12-01 21:47:26 29 4
gpt4 key购买 nike

于是就有了这行代码

String data = URLEncoder.encode("image", "UTF-8") + "=" + URLEncoder.encode(Base64.encodeBase64String(baos.toByteArray()).toString(), "UTF-8");

data += "&" + URLEncoder.encode("key", "UTF-8") + "=" + URLEncoder.encode(YOUR API KEY GOES HERE, "UTF-8");

当我注册 Imgur API 时,我得到了一个 client_id 和一个 client_secret,并且想知道我使用哪一个来表示“您的 API key 在此处”,也在第二行的第一部分中表示“key”我在那里输入什么?也是上传的网站http://imgur.com/api/upload因为我见过一些不同的。

最佳答案

试试这个:

    public static String getImgurContent(String clientID) throws Exception {
URL url;
url = new URL("https://api.imgur.com/3/image");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();

String data = URLEncoder.encode("image", "UTF-8") + "="
+ URLEncoder.encode(IMAGE_URL, "UTF-8");

conn.setDoOutput(true);
conn.setDoInput(true);
conn.setRequestMethod("POST");
conn.setRequestProperty("Authorization", "Client-ID " + clientID);
conn.setRequestMethod("POST");
conn.setRequestProperty("Content-Type",
"application/x-www-form-urlencoded");

conn.connect();
StringBuilder stb = new StringBuilder();
OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
wr.write(data);
wr.flush();

// Get the response
BufferedReader rd = new BufferedReader(
new InputStreamReader(conn.getInputStream()));
String line;
while ((line = rd.readLine()) != null) {
stb.append(line).append("\n");
}
wr.close();
rd.close();

return stb.toString();
}

几乎就像矮胖子一样,将每一部分重新组合在一起,来自各地的代码,至少它按预期工作,遗憾的是他们没有示例......
享受吧。

ps:您也可以使用FILES(尚未尝试),但您需要将图像转换为base64,然后转换为utf8(以替换url)

编辑,使用此地址代替 URL,以便您可以上传文件:

  //create base64 image
BufferedImage image = null;
File file = new File(imageDir);
//read image
image = ImageIO.read(file);
ByteArrayOutputStream byteArray = new ByteArrayOutputStream();
ImageIO.write(image, "png", byteArray);
byte[] byteImage = byteArray.toByteArray();
String dataImage = Base64.encode(byteImage);
String data = URLEncoder.encode("image", "UTF-8") + "="
+ URLEncoder.encode(dataImage, "UTF-8");

关于java - Imgur API 上传,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17352866/

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