我从 lichess.org 执行了一个 GET 请求,API 参考:https ://lichess.org/api#operation/apiGamesUser
import requests
import json
import ndjson
response = requests.get('https://lichess.org/api/games/user/ardito_bryan', params={'max':10})
我无法在这里解码 ndjson,python 库:https ://pypi.org/project/ndjson/ 根据我应该使用的库参考:
items = response.json(cls=ndjson.Decoder)
它不起作用,运行错误:
JSONDecodeError: Expecting value: line 1 column 3 (char 2)
泰。