facebook graph api - Getting all commets for an event with FQL -


i trying list comments event created page. getting eid for event multiquery this:

{ 'eids':' select eid, uid  event_member  uid = 64565465464 'events':' select eid, name, venue, location, start_time, creator  event eid  in (select eid #eids)  , creator =  64565465464  order start_time asc'} 

i totally clueless how comments event eid.

does know how?

you use stream fql table. source_id on table relates eid of event table.

example query via above multi-query:

select message stream source_id in (select eid #eids) 

docs: https://developers.facebook.com/docs/reference/fql/stream


Comments

Popular posts from this blog

how to insert data php javascript mysql with multiple array session 2 -

multithreading - Exception in Application constructor -

windows - CertCreateCertificateContext returns CRYPT_E_ASN1_BADTAG / 8009310b -