在applescript中,如何返回网络上文件的内容?
在applescript中,如何返回网络上文件的内容?因此,如果我执行 foo.com/untitled.txt,它会给我该文件的内容。
In applescript, how can I return the contents of a file on the web? So if I did foo.com/untitled.txt, it would give me the contents of that file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议使用
do shell script
调用命令行实用程序curl
来完成这项工作,如下所示:I would suggest using
do shell script
to call the command line utilitycurl
to do the job, like so:或者另一种方式:
Or another way: