Yahoo Finance API错误

时间:2016-03-02 05:29:55

标签: yahoo-api

我只是想知道这段代码是否适合雅虎财务,因为它不起作用。如果有人拥有合适的API,我很乐意听到回复。

这是代码。

let urlString:String = ("https://query.yahooapis.com/v1/public/yql?q=select * 
from yahoo.finance.quotes where symbol IN 
"+stringQuotes+"&format=json&env=http://datatables.org/alltables.env").stringByAdd
ingPercentEscapesUsingEncoding(NSUTF8StringEncoding)!

1 个答案:

答案 0 :(得分:1)

http://datatables.org/目前存在问题 似乎网站没有响应,这使得社区数据表的所有yql查询无法正常工作。

似乎它已经停机了大约12个小时。我希望他们不要把它关闭:(

你的网址缺少括号中的括号stringQuotes(只是想提一下你的字符串变量“stringQuotes”没有它)

let urlString:String = ("https://query.yahooapis.com/v1/public/yql?q=select * 
from yahoo.finance.quotes where symbol IN 
("+stringQuotes+")&format=json&env=http://datatables.org/alltables.env").stringByAdd
ingPercentEscapesUsingEncoding(NSUTF8StringEncoding)!