abhinavdahiya / go-messenger-bot

Golang bindings for the Messenger Bot API
https://godoc.org/github.com/abhinavdahiya/go-messenger-bot
MIT License
52 stars 10 forks source link

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

Open geekyme opened 7 years ago

geekyme commented 7 years ago

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",
            ........
        }
    ]
}