BOX API: how to get the location attribute in response using https://api.box.com/2.0/files/ {fileId }/content to load

My code is below

WebResource webResource1 = cl.resource("https://api.box.com/2.0/files/{fileId}/content");

ClientResponse res1 = webResource1.header("Authorization", "Bearer"+p1.getAccess_token()).get(ClientResponse.class);
String jsonStr1 = res1.getEntity(String.class);

      

And my answer is given below -

{Object-Id=[file_20317568941], Cache-control=[private], Date=[Wed, 24 Sep 2014 12:11:43 GMT], Content-Length=[27], X-Robots-Tag=[noindex, nofollow], Content-Disposition=[attachment;filename="upload.txt";filename*=UTF-8''upload.txt], Accept-Ranges=[bytes, bytes], Connection=[keep-alive], Content-Type=[text/plain; charset=UTF-8], Server=[nginx], X-Content-Type-Options=[nosniff]}

      

I am getting status code 200, OK

; but to get the attribute, location

I need to have a status code 302

along with the url ( https://dl.boxcloud.com/*

).

Without getting the attribute location: https://dl.boxcloud.com/*

in the response, how do I load the file from the api window?

+3


source to share


1 answer


I have time last Saturday to investigate your problem. The main problem is that if you need to get the value Location

, you need to stop the automatic redirection. Below are explanations and solutions to your problem:

Quoting Box API Docs Download File :

If the file is available for download, the answer is 302 Found URL at dl.boxcloud.com.

From the Wikipedia article on HTTP 302 :

The HTTP response status code is 302 Found - this is the common way to do a URL redirect.

An HTTP response with this status code will optionally provide the URL in the Location header field. A user agent (such as a web browser) is invited to respond with this code to make a second, otherwise identical request for a new URL specified in the Location field.

So, in order to get the attribute Location

in the response header, you need to stop the automatic redirection. Otherwise, according to the document field, you will get the raw file data instead of the download url.



Below is the solution implemented with Commons HTTPClient :

private static void getFileDownloadUrl(String fileId, String accessToken) {
    try {
        String url = MessageFormat.format("https://api.box.com/2.0/files/{0}/content", fileId);
        GetMethod getMethod = new GetMethod(url);
        getMethod.setFollowRedirects(false);

        Header header = new Header(); 
        header.setName("Authorization");
        header.setValue("Bearer " + accessToken);
        getMethod.addRequestHeader(header);

        HttpClient client = new HttpClient();
        client.executeMethod(getMethod);

        System.out.println("Status Code: " + getMethod.getStatusCode());
        System.out.println("Location: " + getMethod.getResponseHeader("Location"));
    } catch (Exception cause) {
        cause.printStackTrace();
    }
}

      

Alternative solution using java.net.HttpURLConnection

:

private static void getFileDownloadUrl(String fileId, String accessToken) {
    try {
        String serviceURL = MessageFormat.format("https://api.box.com/2.0/files/{0}/content", fileId);
        URL url = new URL(serviceURL);

        HttpURLConnection connection = HttpURLConnection.class.cast(url.openConnection());
        connection.setRequestProperty("Authorization", "Bearer " + accessToken);
        connection.setRequestMethod("GET");
        connection.setInstanceFollowRedirects(false);
        connection.connect();

        int statusCode = connection.getResponseCode();
        System.out.println("Status Code: " + statusCode);

        Map<String, List<String>> headerFields = connection.getHeaderFields();
        List<String> locations = headerFields.get("Location");

        if(locations != null && locations.size() > 0) {
            System.out.println("Location: " + locations.get(0));
        }
    } catch (Exception cause) {
        cause.printStackTrace();
    }
}

      

Since Commons HTTPClient is deprecated, the following solution is based on Apache HttpComponents :

private static void getFileDownloadUrl(String fileId, String accessToken) {
    try {
        String url = MessageFormat.format("https://api.box.com/2.0/files/{0}/content", fileId);
        CloseableHttpClient client = HttpClientBuilder.create().disableRedirectHandling().build();
        HttpGet httpGet = new HttpGet(url);
        BasicHeader header = new BasicHeader("Authorization", "Bearer " + accessToken);
        httpGet.setHeader(header);
        CloseableHttpResponse response = client.execute(httpGet);
        int statusCode = response.getStatusLine().getStatusCode();
        System.out.println("Status Code: " + statusCode);

        org.apache.http.Header[] headers = response.getHeaders(HttpHeaders.LOCATION);

        if(header != null && headers.length > 0) {
            System.out.println("Location: " + headers[0]);
        }
    } catch (Exception cause) {
        cause.printStackTrace();
    }
}

      

+2


source







All Articles