Как использовать unified_message_sync с Facebook Graph API

Я не могу найти информацию об unified_message_sync в Интернете. Только в Facebook Developer @ https://developers.facebook.com/docs/reference/fql/unified_message_sync/

Как я вижу, есть пример, но он не сработал: SELECT ... FROM unified_message_sync WHERE thread_id = ... AND <min>action_id = ...

Я пробовал некоторые запросы, такие как: SELECT body FROM unified_message_sync WHERE thread_id = xxx and action_id = xxx

Возвращаемая ошибка:

{
  "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
  }
}

Пожалуйста помоги! :)


person user3437074    schedule 19.03.2014    source источник


Ответы (1)


Пытаться

ВЫБЕРИТЕ тело ИЗ unified_message_sync, ГДЕ thread_id = xxx и action_id > xxx

person Le Duc Duy    schedule 02.05.2014