Facebook ページからすべての投稿とコメントを取得しようとしています。これは、次の FQL を使用して、これまでのところ非常にうまく機能します。
{'all_posts':
'SELECT created_time, post_id, actor_id, message, description, comments FROM stream
WHERE source_id=PAGE_ID ORDER BY created_time',
'comments':
'SELECT id, fromid, post_fbid, text, time, post_id FROM comment WHERE post_id
IN (SELECT post_id FROM #all_posts) ORDER BY post_id'
}
RestFB ライブラリを使用しようとしていますが、
com.restfb.exception.FacebookResponseStatusException: Received Facebook error response
(code 601): Parser error: unexpected '{' at position 0.
クエリを実行しようとすると:
List<JsonObject> queryResults = facebookClient.executeQuery(query, JsonObject.class);
この問題を解決するにはどうすればよいですか?
前もって感謝します。