我想编写一个bash脚本来生成基于google chart api的图表 Google Image Charts API将来无法使用。
重要提示:Google图表工具的图片图表部分已于2012年4月20日正式弃用。它将继续按照我们的弃用政策运作。
新API基于ajax
。如何通过ajax
访问基于curl
的API?
感谢。
答案 0 :(得分:1)
主要是单引号URL;否则,你最终会得到格式错误的网址。
% curl -s 'https://chart.googleapis.com/chart?cht=p3&chd=t:60,40&chs=250x100&chl=Hello|World' > chart.png
% open chart.png
# on windows
% start chart.png