0

我正在尝试使用 Java 和 Apache HTTP 客户端(4.3 版)连接到Freesound API 。

我已成功让我的应用程序成功处理身份验证过程。也就是说,我已将用户的授权代码交换为访问令牌和刷新令牌,如Freesound API OAuth2 Authentication Procedure 的第 3 步所述

现在我想从 API 下载声音。

从 API 下载声音文档提供了一个示例 cURL 命令,我现在正尝试在 Java 中模仿它。

curl -H "Authorization: Bearer {{access_token}}" 'https://www.freesound.org/apiv2/sounds/14854/download/'

不幸的是,我知道如何从 URL 下载文件的唯一方法是使用 Apache Commons IO 行:

org.apache.commons.io.FileUtils.copyURLToFile(URL, File)

由于这个新链接没有文件扩展名,也不允许我指定授权标头,所以我不能使用这种方法。

我的代码目前不起作用。请帮忙!

private static void downloadSound() {

    // the output stream to save .wav file
    FileOutputStream out;

    // the file to save
    File f = new File("test.wav");

    // initializes http client and builds authorization header
    HttpResponse res;
    CloseableHttpClient httpclient = HttpClients.createDefault();
    String authorizationString = "Bearer " + accessToken;

    try {

        // assigns url and authorization header to GET request
        HttpGet request = new HttpGet(
                URI.create("https://www.freesound.org/apiv2/sounds/14854/download/"));
        request.addHeader("Authentication", authorizationString);

        // sends GET request
        res = httpclient.execute(request);

       // downloads file
        FileOutputSTream out = new FileOutputStream(f);
        int read = 0;
        byte[] bytes = new byte[1024];

        while ((read = res.getEntity().getContent().read(bytes)) != -1) {
            out.write(bytes, 0, read);
        }

        System.out.println("Done!");

      // closes input/output streams
        res.getEntity().getContent().close();
        out.close();

    } catch (IOException e) {
        e.printStackTrace();
    }

}
4

1 回答 1

2

可能是授权身份验证

curl -H "Authorization: Bearer {{access_token}}"

VS

request.addHeader("Authentication", authorizationString);

使用Apache HttpClient可能会更轻松,因为它是为计算机到计算机的通信而设计的。

于 2014-06-19T17:52:35.293 回答