我使用Facebook PHP SDK
并且有FQL查询:
SELECT fromid,
text,
id, time,
username,
xid,
object_id
FROM comment
WHERE time > $from
AND time < $to
AND xid IN (
SELECT xid
FROM comments_info
WHERE app_id = $appid
AND updated_time > $from
AND updated_time < $to)
ORDER BY time desc
它在前一段时间有效。查询现在返回 null。
我试过查询
SELECT count
FROM comments_info
WHERE app_id = $appid
和脚本返回
Fatal error: Uncaught Exception: 2: Service temporarily unavailable thrown in...