sorenlouv / fb-sleep-stats

Use Facebook to track your friends’ sleeping habits

Home Page:https://medium.com/@sqrendk/how-you-can-use-facebook-to-track-your-friends-sleeping-habits-505ace7fffb6

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to interpret db.json?

irfanshaik11 opened this issue · comments

I'm getting user ids followed by what I assume to be login times in my .json file

looks something like

100009558{
14013951
14012931}

how to convert 8 digit login numbers to real login times?

like 1401351 = March 23, 4:00 PM ?

They should be 13 digit numbers; they are in the format of a UNIX timestamp. The timestamp counts seconds since January 1 1970. You can use a tool like this to convert it to a human-readable time.

thanks so much!