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();