如何使用 node.js 从 cloudinary 下载 image/s
How to download image/s from cloudinary using node.js
您好,我在我的 node.js 项目中使用 cloudinary,我搜索了很多有关如何将 image/s 从 cloudinary 下载到我的服务器的信息。
有人知道怎么做吗?
到目前为止我还没有找到有人知道该怎么做的解决方案?
上传成功后,您将获得Cloudinary的upload response which contains all necessary data to save on your end such as the resource's public_id
, version
for immediate cache busting. These parameters can be then used for further manipulation。
您还准备好资源的 url
和 secure_url
(https) 以供交付。
您好,我在我的 node.js 项目中使用 cloudinary,我搜索了很多有关如何将 image/s 从 cloudinary 下载到我的服务器的信息。
有人知道怎么做吗?
到目前为止我还没有找到有人知道该怎么做的解决方案?
上传成功后,您将获得Cloudinary的upload response which contains all necessary data to save on your end such as the resource's public_id
, version
for immediate cache busting. These parameters can be then used for further manipulation。
您还准备好资源的 url
和 secure_url
(https) 以供交付。