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.

Measuring the time it takes to perform an operation. Also, questions related to obtaining the current time, calculating on times, formatting and parsing times, etc.

learn more… | top users | synonyms

0
votes
0answers
16 views

How to use time in FQL where clause

I have the following query to select statuses from the friends of a user in the last week: SELECT status_id, uid, message, time from status where uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) ...
0
votes
0answers
3 views

Real Time Updater item id

I'm using Real Time Updates to get my own updates in my wall via my app, but what I receive back from the server is just my personal ID; not the item Id that I just commented.. is there a way to know ...
0
votes
1answer
35 views

Facebook Real Time Update For Subscriptions

I plan on using the real time updates for payment subscriptions for my applications. As each payment comes in each month I wish to give users bonus points towards our game. I am worried however that ...
0
votes
0answers
15 views

GraphAPI: Adding event without time

I want to add an event using the GraphAPI (PHP) that only has a starting date. Fields that are send to Facebook are: [access_token] => <my access token> [name] => Testing event 2 ...
-3
votes
2answers
189 views

Windows Phone C# - Get Real Time [closed]

Is there any way to get real world time into my application? (We can only retrieve such a high accuracy time on internet, so I need a method like this, which returns the real clock from internet)
0
votes
1answer
184 views

Graph API too slow - other way to get user info

I am getting the user info through Facebook Graph API using the following codes: try{ $home = $facebook->api("/$user/home"); $feed = $facebook->api("/$user/feed"); ... What I ...
1
vote
1answer
280 views

last activity time from the facebook app?

My iOS app has facebook integration and it displays a set of users (facebook friends) who has the app installed. The list has to be sorted based on the last activity time of the users. Is it ...
1
vote
1answer
109 views

facebook graph api event : invalid time

I use below code to create a event, but I get "error":{"message":"(#100) You must enter a valid date and time $event_name = "New Event API Test Event"; $event_start = time() + 60*60; ...
0
votes
1answer
384 views

How to do FQL NOW()+1HOUR?

Here's my FQL: $fql = 'SELECT eid FROM event WHERE eid IN (...) AND start_time>now()' I want something like... $fql = 'SELECT eid FROM event WHERE eid IN (...) AND start_time-1hour>now()' ...
0
votes
1answer
28 views

How to translate facebook time in my locale

facebook returns this value for publish date: 2012-05-17T05:07:43+01:00 How do I translate it to human readable date/time in my location, for example I'm in hongkong? thanks for any help!
0
votes
2answers
248 views

facebook and his start_time dates

I'm having a lot of troubles playing with the facebook API recently: I'm fetching start_time from an event and I get this: 2012-11-14T04:00:00+0000 Which is pacific time I think since the event ...
2
votes
1answer
465 views

DateTime and time zones when calling Facebook PHP SDK?

My time zone is Europe/Rome. I'm using Facebook PHP SDK and insights part of the API accepts a parameter end_time relative to Pacific Daylight Time: The end of the period during which the metrics ...
-2
votes
1answer
145 views
0
votes
0answers
497 views

Why is my page iframe application blank for some users? (Facebook request time out)

I have an incredibly simple application that simply fan gates and then offers a form to fill out (contest). I receive and parse the signed_request and display content based on the like_status. My ...
0
votes
1answer
213 views

What time format is this & how to convert to readable format?

This is one of those questions that I'm sure will have a quick answer but I can't seem to find it. Using the Facebook Graph API, the opening hours for a business are returned in JSON using this ...
0
votes
1answer
888 views

facebook shares/likes over a time period

How can I get the number of FB shares/likes for some FB object over a time period? For example, I'd like to get how many shares where for some url from January, 1st, 2011 until January, 30th, 2011.
7
votes
1answer
237 views

How do I replace absolute times (“1:30 PM”) with relative times (“15 minutes ago”) and have them automatically update?

Is there a Javascript script to change the time and date of blogs automaticly like facebook ??? for example "10 minutes ago" instead of "May 15 2010 12:30". -Thank You