oAuthTwitterWrapper icon indicating copy to clipboard operation
oAuthTwitterWrapper copied to clipboard

GetSearch() Deserialization Results in: "Arithmetic operation resulted in an overflow."

Open pimbrouwers opened this issue 10 years ago • 3 comments

Fix: In the "JsonTypes" directory, modify the following files:

User.cs Original [JsonProperty("id")] public int Id { get; set; }

Change to [JsonProperty("id")] public long Id { get; set; }

Hashtag.cs Original [JsonProperty("indices")] public List Indices { get; set; }

Change to [JsonProperty("indices")] public List Indices { get; set; }

pimbrouwers avatar Jul 29 '14 15:07 pimbrouwers

+1 @pimbrouwers Thanks for User.cs correction.

abhith avatar Mar 29 '16 14:03 abhith

You are more than welcome! Thank YOU for provider such a great API wrapper.

pimbrouwers avatar Mar 29 '16 14:03 pimbrouwers

Hi @pimbrouwers , please submit this as a pull request and I will include it. :+1:

andyhutch77 avatar Mar 29 '16 14:03 andyhutch77