Elias Rodrigues

Results 4 comments of Elias Rodrigues

By adding ```go if err := scanner.Err(); err != nil { s.api.Log.Notice(err) } ``` after the mentioned for-loop over `scanner.Scan()`, I get: `2018/02/09 12:24:18 bufio.Scanner: token too long` So I...

At the moment, the very first token I receive from Twitter is a large array of IDs with 78467 bytes. Printing a `reflect.TypeOf()` shows it is `anaconda.FriendsList` type. UserStream will...

Hi, I tried your code and I got "No JSON object could be decoded" as well. I still don't know the reason, but I suspect it is something related to...

Hi @deankarn, As [`time.Duration` is an `int64` type](https://golang.org/pkg/time/#Duration), I initially thought about adding a custom function to handle `time.Duration` but then I noticed that `RegisterCustomTypeFunc` doesn't deal with the param,...