开发者

Search events of user via FQL

开发者 https://www.devze.com 2023-01-28 08:50 出处:网络
I wanted to find events attended by my user, but somehow fql is not working without providing event id. Anyone knows why ?

I wanted to find events attended by my user, but somehow fql is not working without providing event id. Anyone knows why ?

SELECT rsvp_status FROM event_member WHERE uid = int_user_uid

开发者_JAVA百科

link : http://developers.facebook.com/docs/reference/rest/fql.query


From Facebook Query Language (FQL) - Facebook Developers

Queries are of the form SELECT [fields] FROM [table] WHERE [conditions]. Unlike SQL, the FQL FROM clause can contain only a single table. You can use the IN keyword in SELECT or WHERE clauses to do subqueries, but the subqueries cannot reference variables in the outer query's scope. Your query must also be indexable, meaning that it queries properties that are marked as indexable in the documentation below.

ie all FQL queries require at least one indexable column in the WHERE clause.

And, as you can see from the FQL event table page the only indexable property is eid.

0

精彩评论

暂无评论...
验证码 换一张
取 消