C# 谷歌货币api(按日期显示结果)

C# 谷歌货币api(按日期显示结果),c#,web-services,google-api,yahoo-api,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 St

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

而且效果很好

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();
我想做的是得到相同的数据,但过去的日期(准确的日期)

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


谢谢大家

经过一番密集的谷歌搜索,我发现:

他们有一个您可以使用的web服务:


最后一个链接表示2009年11月15日美元兑南非兰特的汇率。

在谷歌搜索之后,我发现:

他们有一个您可以使用的web服务:

最后一个链接表示2009年11月15日美元兑南非兰特的汇率