尝试通过 API (PUT groups/{id}.json) 更新群组监视列表时出错

非常感谢,@zogstrip!现在可以用了!:smiley:

(仅供参考,"update_existing_users"=True 必须在发送到 JSON 中的 “group” 项之外/与之平行(此处以 Python 语法显示,因此 True 会被翻译成字符串 "true"):

            jsonData={
                "group": {
                    "name": f"{groupName}",
                    "watching_category_ids": newWatchList,
                },
                "update_existing_users": True,
            },