我想在clickup中评论一个特定的任务,但它响应401错误。
url = "https://api.clickup.com/api/v2/task/861m8wtw3/comment"
headers = {
"Authorization": "Bearer <my api key>",
"Content-Type": "application/json"
}
# comment = input('Type your comment text: \n')
comment = 'test comment'
data = {
"content": f"{comment}"
}
response = requests.post(url, headers=headers, json=data)
输出为:<Response [401]>
有什么问题?
我尝试添加mozilla头作为用户代理密钥:
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36'
但仍然得到401错误!
2条答案
按热度按时间lnlaulya1#
在我看来你被发现了。
尝试使用Selenium-Profiles
e0uiprwp2#
看起来问题出在Authorization头上。确保头只包含 *API令牌 * 字符串,前面没有'Bearer'。如下所示: