is it possible to return date in timestamp format using the android sdk rather than this format
EEE MMM dd HH:mm:ss zzz yyyy
because when i query users table in REST API i receive timestamp.
thank you
is it possible to return date in timestamp format using the android sdk rather than this format
EEE MMM dd HH:mm:ss zzz yyyy
because when i query users table in REST API i receive timestamp.
thank you
As far as I know you receive Java Date object, so you can call getTime()
and get timestamp.
ok i get it now , thanks