I’m using Mathematica 11 installed in Ubuntu.
I’m trying to retrieve Twitter data these days. So, I’m using:
twitter = ServiceConnect["Twitter"]
Everything is connecting well and when I use
twitter["UserData", "Username" -> "##TWITTERUSERNAME##"]
I can read the data.
However, I’m trying to retrieve data with:
twitter["UserReplies", "Username" -> "##TWITTERUSERNAME##", MaxItems -> 25]
And I’m getting this repeated several times:
$ CharacterEncoding: "The byte sequence {240} could not be interpreted as a character in \
the UTF-8 character encoding."
I tried applying the following, because I thought it was just a simple problem with CharacterEncoding:
$ CharacterEncoding = "ASCII"
But nothing’s happening and I’m stuck with this. I can’t seem to apply any of the commands posted in these examples.
Thank you very much for any answer you could give me.