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 am trying to deserialize the following JSON string:

{
    "id":"4711363275",
    "owner":"51262181@N07",
    "datetaken":"2010-06-10 11:34:35",
    "ownername":"tlamy",
    "latitude":48.85959,
    "longitude":2.291872
}

Following is the F# code:

[<DataContract>]
type photo = {
        [<field: DataMember(Name = "id")>]
        photo_id:int64
        [<field: DataMember(Name = "owner")>]
        owner:string
        [<field: DataMember(Name = "datetaken")>]
        datetaken:DateTime
        [<field: DataMember(Name = "latitude")>]
        latitude:float
        [<field: DataMember(Name = "longitude")>]
        longitude:float
}

let internal unjson<'t> (jsonString:string)  : 't =  
    use ms = new MemoryStream(ASCIIEncoding.Default.GetBytes(jsonString)) 
    let obj = (new DataContractJsonSerializer(typeof<'t>)).ReadObject(ms) 
    obj :?> 't
let decodePhoto = unjson<photo>

The issue I am having is with the date field, the code above throws a deserializing error. How can I specify the format of the date string to parse?

Thanks a lot.

share|improve this question

2 Answers

Check out : http://musingsfromacube.wordpress.com/

share|improve this answer

Not sure, but can you use IDeserializationCallback interface or the OnDeserializing attribute for this?

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.