Facebook FQL query hometown_location {city} -


i create fql query hometown_location.city fql , not hometown_location (array). there way it?

my current query following :

select uid, hometown_location user uid = me(); 

keep in mind blank space replaced '+' query works.

my current result returns me array contain city,state,country,zip,id , name.

the result has little info want result isn't there way city?

use dot operator: "hometown_location.city" should work

so query be:

select uid, hometown_location.city user uid = me(); 

Popular posts from this blog

Php - Delimiter must not be alphanumeric or backslash -

c# - How to change the "Applies To" field under folder auditing options programatically (.NET) -

c++ - Ambiguity when using boost::assign::list_of to construct a std::vector -