0

I have an Android/Web app where users login through FBConnect, now I have location IDs how do I convert those location IDs to lat/lng ?

e.g: these are sample location IDs with country and/or city name:

{"id":"110647272290207", "name":"Mohammedia,  Morocco"}

{"id":"111612325521963", "name":"Doha, Qatar"}

{"id":"116190411724975", "name":"Melbourne,  Victoria,  Australia"}
Shehabic
  • 6,787
  • 9
  • 52
  • 93

1 Answers1

0

I just found the solution: here it is, it doesn't even require Access Token:

http://graph.facebook.com/[location_id]

e.g:

http://graph.facebook.com/116190411724975
Shehabic
  • 6,787
  • 9
  • 52
  • 93
  • Unfortunately, this doesn't seem to work anymore: { "error": { "message": "An access token is required to request this resource.", "type": "OAuthException", "code": 104, "fbtrace_id": "FFKxUmtb52O" } } – Alex Jul 26 '17 at 07:47