我需要使用 Google Apps 脚本获取一些存储在 FTP 服务器中的图像
图像只能通过 FTP 访问,因为
ftp://user:password@ftpsite.com/path2photos/photo123.jpg
有任何想法吗?
谢谢
我需要使用 Google Apps 脚本获取一些存储在 FTP 服务器中的图像
图像只能通过 FTP 访问,因为
ftp://user:password@ftpsite.com/path2photos/photo123.jpg
有任何想法吗?
谢谢
无法从 Google Apps 脚本发出出站 FTP 请求(App Engine 也有类似的限制)。
您可以选择找到服务器的 HTTP 接口(某些站点同时提供 HTTP 和 FTP),或者通过 FTP 客户端下载文件,然后上传到 Google Drive,然后从那里访问这些文件。
随时在问题跟踪器中查找/记录项目。
通过使用 UrlFetchApp 类,我已经成功地将远程服务器的图像放入谷歌应用程序脚本中。
https://developers.google.com/apps-script/reference/url-fetch/url-fetch-app