Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
Once you get the place-id, you could query the place FQL table (developers.facebook.com/docs/reference/fql/place) and get the latitude, longitude co-ordinates. – Deepak Lakshmanan Jan 4 at 23:57

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.