无法从Google Cloud Function上传网址图片

时间:2018-07-11 15:35:12

标签: firebase google-cloud-platform google-cloud-storage google-cloud-functions

  

我正在尝试使用以下方法将YouTube缩略图上传到我的云存储中   云功能,代码在开发模式下运行良好,但在   部署。

return bucket.upload('https://img.youtube.com/vi/dXo0LextZTU/0.jpg', options)
            .then(res => {

             console.log('uploaded');
            response.send(res);         })
.catch (err=>{
 response.send(err);
          });
  

仅仅是我正在使用免费计划吗?或其他一些代码问题?

在“部署”中出现的错误是 Error: getaddrinfo ENOTFOUND img.youtube.com:80

1 个答案:

答案 0 :(得分:1)

由于在Free Plan中正在执行该功能,因此在部署时会发生此错误。它只能用于付费计划或开发中。