How to convert Facebook created_time to Java Date?
- by smitty
Hi,
I have a FQL statement like this:
String query = "SELECT post_id, actor_id, target_id, created_time, message
FROM stream WHERE source_id in (SELECT target_id FROM connection
WHERE source_id=<userID>) AND is_hidden = 0";
I just wondering what kind of time Facebook gives to me.
The result of my statement will be mapped to a wrapper object (wallpost).
myDate.setTime(wallpost.getCreated_time());
gives me no valid date.
Does anyone have an idea what kind of date Facebook returns and how to match it to Date()?
thanks in advance!