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<int> Indices { get; set; } Change to [JsonProperty("indices")] public List<long> Indices { get; set; }