I am new to Facebook Graph API.
I am able to get public post for some search query using
https://graph.facebook.com/search?q=watermelon&type=post
gives me
"data": [
{
"id": "154411491281465_440568109332467",
"from": {
"category": "Restaurant/cafe",
"name": "Main Street Bar & Grill",
"id": "154411491281465"
},
"message": "Yay! Friday! Make MSB&G part of your weekend! Soup is on ~ warm up with Beef Vegetable and Cream of Broccoli! Value Lunch Menu available daily from 11am -4pm! Happy Hour, restaurant wide daily from 4pm-7pm! Today's 5.00 Drink of the Day ~ Watermelon Martini's! See ya soon!",
"actions": [
{
"name": "Comment",
"link": "https://www.facebook.com/154411491281465/posts/440568109332467"
},
{
"name": "Like",
"link": "https://www.facebook.com/154411491281465/posts/440568109332467"
}
],
"privacy": {
"value": ""
},
"type": "status",
"created_time": "2013-01-04T14:26:01+0000",
"updated_time": "2013-01-04T14:26:01+0000",
"likes": {
"data": [
{
"category": "Restaurant/cafe",
"name": "Main Street Bar & Grill",
"id": "154411491281465"
}
],
"count": 1
}
},
.....
But now I want to get the location where this post has been made. like country or City or state or latitude or longitude.
How can I do this ? Thanks