我试图让所有包含某个字符串的域都无济于事。
我试过
fql?q=SELECT url, id, type, site FROM object_url WHERE strpos(url,'a') >=0
得到:
{
"error": {
"message": "Your statement is not indexable. The WHERE clause must contain an indexable column. Such columns are marked with * in the tables linked from http://developers.facebook.com/docs/reference/fql ",
"type": "NoIndexFunctionException",
"code": 604
}
}
我试过
fql?q=SELECT domain_name FROM domain WHERE strpos(domain_name,'a') >=0
我得到了:
{
"error": {
"message": "You must specify a domain_id or a domain_name",
"type": "NoIndexFunctionException",
"code": 604
}
}
在图表api中,搜索类型域或仅限网址页面没有选项。我需要从FB获取域名
我应该首先查询哪个表或object_url?