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.

When getting information about album, I can get only location name :

select aid, owner, location from album;

But I need also a place ID for further manipulations.

I can't just query "place" table to return me places that have the name of album location ("name" column is not unique and not indexed in place table).

How can I get that place ID?

share|improve this question
Found it. It can be taken from a "photo" table, when getting a photo associated with that album. – alexaschka Aug 27 '12 at 10:42

2 Answers

The user can put anything they like into this field – so the info you’re getting from there does not necessarily have to correspond to any specific place on Facebook.

For example, I could name my album “Photos from my Holidays in 2012”, and type “New York, London, Berlin, Tokyo” into the field – so you can not expect the API to return a specific location id in those cases.

share|improve this answer
up vote 0 down vote accepted

Found it. It can be taken from a "photo" table, when getting a photo associated with that album:

select aid, place_id from photo where pid = (select cover_pid from album where aid = you_post_attachment_fb_object_id)
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.