我正在尝试使用python
创建新票证,但我无法osticket
接受我的 API 密钥。
这是我的代码:
def post_ticket(json):
headers = {'API-Key': 'mykey'}
response = requests.post("http://mydomani.com/api/tickets.json", data=create_json_ticket(json), headers=headers)
for r in response:
print(r)
我收到错误消息'Valid API key required'
。如果我使用PHP
作为示例给出的脚本(使用相同的 url、key 和 JSON 数据)它工作正常。