谷歌货币api(按日期的结果)

时间:2014-03-31 14:32:51

标签: c# web-services google-api yahoo-api

这就是我在代码中转换货币的方式

并且效果很好

HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://rate-exchange.appspot.com/currency?from=USD&to=EUR");

        HttpWebResponse response = (HttpWebResponse)request.GetResponse();
        var reader = new StreamReader(response.GetResponseStream());
        string json_result = reader.ReadToEnd();

我想要做的是获取相同的数据,但过去的日期(确切的日期)

有办法吗? (通过Google或不同的API)

谢谢大家

1 个答案:

答案 0 :(得分:2)

经过一些密集的谷歌搜索后,我发现了这个: http://currencies.apps.grandtrunk.net/

他们有一个你可以使用的网络服务: http://currencies.apps.grandtrunk.net/getrate/2009-11-15/usd/zar

最后一个链接代表2009年11月15日的美元兑ZAR汇率。