gpt4 book ai didi

parse-platform - 如何使用内容类型为 zip 的 Parse.Cloud.httpRequest 下载文件

转载 作者:行者123 更新时间:2023-12-04 19:47:00 25 4
gpt4 key购买 nike

我想创建一个计划的解析作业来下载一个 zip 文件。我用 Parse.Cloud.httpRequest() 试过了,但它似乎只适用于 json 和 url 编码的内容类型。

我怎样才能通过云代码完成这项工作?

Parse.Cloud.define("getPage", function(request, response) {
Parse.Cloud.httpRequest({
url: 'http://www.nseindia.com/content/historical/EQUITIES/2015/MAY/cm12MAY2015bhav.csv.zip',
headers: {
"Content-type": "application/zip",
"Expires": "0",
"Content-disposition": 'attachment; filename="cm12MAY2015bhav.csv.zip"',
"User-Agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
},
success: function(httpResponse) {
console.log("Response-text:"+ httpResponse.text);
console.log("Response-text:"+ httpResponse.data);
//response(httpResponse.text);
},
error: function(httpResponse) {
console.log("Error hit, error: "+ httpResponse.text);
//response('Request failed with response code ' + httpResponse.status);
}
});

});

上面的代码为 httpResponse.data 给出了“未定义”

最佳答案

数据将是 JSON 或类似的东西。如果是文件,请使用 httpResponse.buffer。

关于parse-platform - 如何使用内容类型为 zip 的 Parse.Cloud.httpRequest 下载文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30215280/

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