Talk:Functions and Operators

From Facebook Developer Wiki

Jump to: navigation, search

[edit] Getting current unix time from facebook servers

If you want to get the current time from Facebook, you could try to do the following:

SELECT now() from STATUS where uid = INSERT_USER_ID_HERE LIMIT 1

There are probably easier ways also, but this is one workaround as just SELECT now() did not work for me.

reference