如何通过curl访问谷歌图表API?

时间:2012-06-02 01:23:11

标签: ajax bash curl google-visualization

我想编写一个bash脚本来生成基于google chart api的图表 Google Image Charts API将来无法使用。

  

重要提示:Google图表工具的图片图表部分已于2012年4月20日正式弃用。它将继续按照我们的弃用政策运作。

新API基于ajax。如何通过ajax访问基于curl的API? 感谢。

1 个答案:

答案 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