我正在进行查询以获取域名的总体评价,并且我使用以下内容:
https://api.facebook.com/method/fql.query?query=SELECT metric, value FROM insights WHERE object_id=xxxxxxxxx AND metric='domain_widget_likes' AND end_time=end_time_date('2011-08-27') AND period=period('lifetime')&access_token=xxxxxxxxx
我已经声明了我的域名,拥有我的域的对象ID并安装了一个应用来访问洞察并发送令牌。
但是什么都不返回,如果我尝试使用句点('天'),查询工作正常,但我不仅需要每天都喜欢。
任何人都知道这是关于洞察数据的新规则还是错误?
非常感谢。
答案 0 :(得分:0)
您是否可以在查询中使用通配符%
,如此(period LIKE period('%')
):
https://api.facebook.com/method/fql.query?query=SELECT metric, value FROM insights WHERE object_id=xxxxxxxxx AND metric='domain_widget_likes' AND end_time=end_time_date('2011-08-27') AND period LIKE period('%')&access_token=xxxxxxxxx
String Comparison Functions Reference有关于查询通配符等的更多信息