I'm trying to implement a Parse back-end integration with my app
in a data browser of Parse dashboard, i've add a class that have a column with date type
if i save the data into class with parse library i get an error
DateParse (Date As String) As Long
Parses the given date string and returns its ticks representation.
An exception will be thrown if parsing fails.
Example:
Dim SomeTime As Long
SomeTime = DateTime.DateParse("02/23/2007")
already tried
in this case the error is "com.parse.ParseException: invalid type for key startedAt, expected date, but got long"
probably i'll have to change the type in Parse
with number type's column in Parse class and DateTime.Now in B4A it works but the value of date column saved is "1396190338537" (for 30/03/2014..)
how to save the date type using B4A? B4A accepts the date type?