假设我的应用需要针对用户在Facebook上发布的所有状态消息提供全文搜索服务。 所以我的应用程序将代表用户连接到Facebook(使用OAuth)并使用Graph API查询状态。
到目前为止我设法做的是:
/me/statuses
select message from status where uid = me() and strpos(lower(message), 'prague') >=0
在某些问题中已经讨论过无法对状态消息执行高级文本搜索这一事实,例如:Facebook Graph API to search user statuses
所以,为了提供这样的服务,我的应用应该:
/me/statuses
这是唯一的解决方案吗?你看到了更好的解决方案吗?