反序列化 JSON 对象 "Unexpected character encountered while parsing value: <. Path '', line 0, position 0." 时出错

Error when deserializing JSON object "Unexpected character encountered while parsing value: <. Path '', line 0, position 0."

我正在尝试流式传输大型 JSON 文件并在流式传输期间逐项反序列化。

我正在使用此测试 https://github.com/ysharplanguage/FastJsonParser/blob/master/JsonTest/TestData/fathers.json.txt

这是我的代码:

using Newtonsoft.Json;
using System.Collections.Generic;
using System.IO;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using Newtonsoft.Json.Linq;
using System.Threading.Tasks;

namespace AMServices.Controllers
{
    public class FathersData
    {
        public Father[] fathers { get; set; }
    }

    public class Someone
    {
        public string name { get; set; }
    }

    public class Father : Someone
    {
        public int id { get; set; }
        public bool married { get; set; }
        // Lists...
        public List<Son> sons { get; set; }
        // ... or arrays for collections, that's fine:
        public Daughter[] daughters { get; set; }
    }

    public class Child : Someone
    {
        public int age { get; set; }
    }

    public class Son : Child
    {
    }

    public class Daughter : Child
    {
        public string maidenName { get; set; }
    }

    public class StreamerController : ApiController
    {
        static readonly JsonSerializer _serializer = new JsonSerializer();
        static readonly HttpClient _client = new HttpClient();

        [HttpPost]
        [Route("streamer/stream")]
        public async Task<IHttpActionResult> stream()
        {
            string apiUrl = "https://github.com/ysharplanguage/FastJsonParser/blob/master/JsonTest/TestData/fathers.json.txt";

            using (var stream = await _client.GetStreamAsync(apiUrl).ConfigureAwait(false))
            using (var reader = new StreamReader(stream))
            using (var json = new JsonTextReader(reader))
            {
                if (json == null)
                    StatusCode(HttpStatusCode.InternalServerError);

                JsonSerializer serializer = new JsonSerializer();

                JObject obj = JObject.Load(json);
                // Father f = serializer.Deserialize<Father>(json);
            }

            return StatusCode(HttpStatusCode.OK);
        }
    }
}

当我从 Postman 调用这个 WebAPI 控制器方法时,出现以下错误

"ExceptionMessage": "Unexpected character encountered while parsing value: <. Path '', line 0, position 0.", "ExceptionType": "Newtonsoft.Json.JsonReaderException",

这段代码有什么问题?

您正在尝试解析 html 页面。

尝试原始版本:

https://raw.githubusercontent.com/ysharplanguage/FastJsonParser/master/JsonTest/TestData/fathers.json.txt