我试图在python中执行一个简单的POST请求,但是作为响应,我得到了错误422。执行此请求的正确方法是什么?
formData = {'authenticity_token': 'SECRET KEY', 'price': '100', 'button': ''}
x = requests.post('https://theshownation.com/mlb20/items/cfbe0f33f88e0a053237ad6205530602/create_buy_order', params=formData)
print(x)