[rest] Postman의 API에서 Excel (.xls) 파일을 다운로드하는 방법은 무엇입니까?

해당 API에 대한 API 엔드 포인트 및 권한 부여 토큰이 있습니다.

상기 API는 .xls보고서 다운로드 용이며 Postman을.xls 사용하여 다운로드 한 파일을 어떻게 볼 수 있습니까?

Postman을 사용할 수 없다면 다른 프로그래밍 방법은 무엇입니까?



답변

요청할 때 send and download대신 선택하십시오 send. (파란색 버튼)

https://www.getpostman.com/docs/responses

“이진 응답 유형의 경우 Send and download하드 디스크에 응답을 저장할 수있는 옵션을 선택해야합니다 . 그런 다음 적절한 뷰어를 사용하여 볼 수 있습니다.”


답변

끝 점이 실제로 .xls 파일에 대한 직접 링크 인 경우 다음 코드를 사용하여 다운로드를 처리 할 수 ​​있습니다.

public static boolean download(final File output, final String source) {
    try {
        if (!output.createNewFile()) {
            throw new RuntimeException("Could not create new file!");
        }
        URL url = new URL(source);
        HttpURLConnection connection = (HttpURLConnection) url.openConnection();
        // Comment in the code in the following line in case the endpoint redirects instead of it being a direct link
        // connection.setInstanceFollowRedirects(true);
        connection.setRequestProperty("AUTH-KEY-PROPERTY-NAME", "yourAuthKey");
        final ReadableByteChannel rbc = Channels.newChannel(connection.getInputStream());
        final FileOutputStream fos = new FileOutputStream(output);
        fos.getChannel().transferFrom(rbc, 0, 1 << 24);
        fos.close();
        return true;
    } catch (final Exception e) {
        e.printStackTrace();
    }
    return false;
}

당신은 모든 해야 할 필요는 인증 토큰에 대한 적절한 이름을 설정하고 그것을 채우기입니다.

사용법 예 :

download(new File("C:\\output.xls"), "http://www.website.com/endpoint");


답변

당신은 우편 배달부의 응답 오른쪽에 옵션으로 응답 (pdf, 문서 등)을 저장할 수 있습니다.이 이미지를 확인하십시오
우편 배달부 응답 저장

자세한 내용은 이것을 확인하십시오

https://learning.getpostman.com/docs/postman/sending_api_requests/responses/


답변

우편 배달부-헤더 요소 ‘Accept’를 ‘application / vnd.ms-excel’으로 추가 해 보셨습니까?


답변