oAuthTwitterWrapper
oAuthTwitterWrapper copied to clipboard
GetSearch() Deserialization Results in: "Arithmetic operation resulted in an overflow."
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
Change to
[JsonProperty("indices")]
public List
+1 @pimbrouwers Thanks for User.cs correction.
You are more than welcome! Thank YOU for provider such a great API wrapper.
Hi @pimbrouwers , please submit this as a pull request and I will include it. :+1: