汇率换算货币转换器错误

时间:2014-06-14 04:53:08

标签: php json api currency

我这里没有编码相关的问题。我想了解有关货币转换器API的一些细节。

$l_json_from = $this->currency->format($total_row['value'], false, false, false);
$l_url = "http://rate-exchange.appspot.com/currency?from=INR&to=USD&q=$l_json_from";
$l_jsons = @file_get_contents($l_url);
$l_json_data = json_decode($l_jsons, true);
$l_to_cur = $l_json_data['v'];

我使用上面的代码使用this URL将INR费率转换为美元费率。昨天它工作正常。但是,今天它不起作用。费率交换API网址说:

  

超配额

     

此应用程序暂时超过其服务配额。请稍后再试。

为什么这个网站会这样显示?是什么原因?我可以尝试任何其他货币转换器API吗?

1 个答案:

答案 0 :(得分:0)

  

超配额

     

此应用程序暂时超过其服务配额。请试试   再来一次。

这意味着服务rate-exchange.appspot.com的主机(Google App Engine?)超过了配额。这意味着你不能使用它,直到API的所有者(我相信are these folks)解决他们的问题。

但是,有许多类似的货币兑换API可供讨论here