We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
check.toml相关key填写正常,查看api_ran_time.py代码中96行
requests.put(url=self.url + "open/crons", data=data, headers={"Authorization": f"Bearer {self.token}"})
青龙接口这里需要的是JSON,如果按照原来的方式返回的是 {"code":500,"message":"Validation failed"}
{"code":500,"message":"Validation failed"}
改成下面这样就正常
requests.put(url=self.url + "open/crons", json=data, headers={"Authorization": f"Bearer {self.token}"})
The text was updated successfully, but these errors were encountered:
🐛 Fix requests params (#144)
4d56c0b
已修复
Sorry, something went wrong.
706627e
No branches or pull requests
check.toml相关key填写正常,查看api_ran_time.py代码中96行
青龙接口这里需要的是JSON,如果按照原来的方式返回的是
{"code":500,"message":"Validation failed"}
改成下面这样就正常
The text was updated successfully, but these errors were encountered: