1
如何使用圖像的URL將現有圖像上傳到AWS S3(我正在使用適用於Node.js的AWS開發工具包)?我正嘗試從Parse遷移圖片,我可以訪問其中的網址。我有事設立這樣的:如何使用圖像URL將圖像上傳到AWS S3?
let params = {
Key: 'sampleurl.png',
Bucket: Config.get('server.s3.bucket'),
Body: ???, // ?
ACL: 'public-read'
};
s3Client.upload(params, (err, data) => {
if (err) { throw err; }
return data.Location;
});
我怎麼會重新上傳,例如,在「http://files.parsetfss.com/something/something.png」到AWS的圖像?
沒有做過的「files.parse.com」,但可是,你這個遷移可以檢查這個proj:https://github.com/parse-server-modules/parse-files-utils使用報告,IMO你可以在http上訪問url(http GET),而不需要master或api key。因此,您可以使用鏈接項目的報告中的公共URL通過腳本遷移到S3 –
考慮首先下載圖像並將其上傳到S3。看來這篇文章可能會給你關於第一部分的提示:http://stackoverflow.com/questions/12740659/downloading-images-with-node-js – Conti