开发者

Fql query event Venue Problem

开发者 https://www.devze.com 2023-04-02 17:07 出处:网络
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.

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

0

精彩评论

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