Fql query event Venue Problem
I am trying to query the venue instead of the location and I am having trouble doing so. The events 开发者_开发百科I am trying to display need the City and state instead of the "location" title.
Here is the code:
http://textuploader.com/?p=6&id=BSsec
down at the bottom you will see where I have tried calling the venue information. all it ever returns is "array" which I have yet to figure out how to do.
Help is greatly appreciated.
thank you!
you can do select venue.city, vanue.state
etc
you can check other venue fields here in docs:
https://developers.facebook.com/docs/reference/fql/event/
UPDATE:
SELECT venue.city,venue.street
FROM event
WHERE eid=156699104393395
hope this helps
精彩评论