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.

According to FB documentation:

in "stream" table - place ID is an integer (http://developers.facebook.com/docs/reference/fql/stream/ field "place")

while in "place" table - place ID is a string (http://developers.facebook.com/docs/reference/fql/place/ field "page_id")

So, is place ID an integer or a string?

share|improve this question
Is it definitely returned as an integer in the stream table? most IDs of users, pages, etc are returned as strings because some languages on some architectures won't parse 64 bit ints correctly – Igy Aug 15 '12 at 13:50

1 Answer

When querying both tables, I get double (aka float) in PHP as revealed by gettype(). So the docs should probably read int for both place and page_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.