views:

16

answers:

1

I need to know when a users's profile was created. Is this possible through fql?

THANKS!

A: 

There is no such field available.

zerkms
Ok I'll take your word for it
Mike Simmons
@Mike: you can see that yourself in `users.getInfo` (rest) and in `/me` (graph).
zerkms
Well I simply need to find out when the first 'stream' record (wallpost or status update) was made on their wall. So I'm trying SELECT post_id,created_time FROM stream WHERE source_id = <uid> ORDER BY created_time ASC LIMIT 1 but it doesn't give me the first post :(... it gives me my latest one
Mike Simmons