go-messenger-bot icon indicating copy to clipboard operation
go-messenger-bot copied to clipboard

json: cannot unmarshal string into Go struct field Entry.id of type int64

Open geekyme opened this issue 8 years ago • 0 comments

https://github.com/abhinavdahiya/go-messenger-bot/blob/master/receive.go#L13

Entry.ID is a string, not an int64.

The payload receive from fb webhook is:

{
    "object": "page",
    "entry": [
        {
            "id": "19283198372197",
            ........
        }
    ]
}

geekyme avatar Jul 19 '17 10:07 geekyme