特定の文字列を含むすべてのドメインを無駄に取得しようとしています。
私は試した
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 には、検索タイプのドメインまたは URL のみのページのオプションはありません。FB からドメインを取得する必要があります
最初に、どのテーブルにクエリを実行する必要がありますか? domain または object_url?