Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
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.

I write mobile application with Corona SDK that interacts with Facebook.

On user's Facebook login I receive "expiration of access token" from Facebook in ms. I want to send it to Parse.com (SAAS) in the yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format.

How can I do it?

share|improve this question
Related to stackoverflow.com/questions/11378822/…. – lhf Jul 8 '12 at 11:36

2 Answers

up vote 2 down vote accepted
date = os.date("!%Y-%m-%dT%H:%m:%S.000Z")

You'll have to leave the milliseconds as 0, because you can't get those from os.date. Also the ! at the start is required to get UTC time (as opposed to local time), which is what the Z at the end signifies.

More info.

share|improve this answer

The LuaDate library apt for Date Manipulationss http://luaforge.net/projects/date/

It is very easy to use, and it is documented well! You can download it from here http://files.luaforge.net/releases/date/date

There may be other easier ways as well.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.