gpt4 book ai didi

Python 请求库后置函数返回 u"Unrecognized token 'filspoetfed' : was expecting null"

转载 作者:太空宇宙 更新时间:2023-11-03 13:41:03 25 4
gpt4 key购买 nike

我不知道这个命令(请求行)抛出的错误是什么意思,网上似乎也没有关于它的任何信息。

 data = {
....: 'fields':
....: {
....: 'environment': '- \\n- Repeated : 0 times',
....: 'description': '',
....: 'summary': 'Fill in Something',
....: 'project': {
....: "key": "QABL"
....: },
....: 'assignee': 'qa-auto',
....: 'issuetype': 'Bug',
....: 'priority': 'Major'
....: }
....: }

print header
{'content-type': 'application/json'}

r = requests.post("https://jira.some-company.net/rest/api/latest/issue/", headers=header, auth=requests.auth.HTTPDigestAuth('user', 'password'), data=data)

 r.json()

我尝试使用请求库向 JIRA 发出发布请求,对 r.json() 的 JSON 响应如下所示...

 {u'errorMessages': 
[u"Unrecognized token 'filspoetfed': was expecting 'null', 'true', 'false' or NaN\n
at [Source: org.apache.catalina.connector.CoyoteInputStream@10758d77; line: 1, column: 23]"]}

有人见过这个吗?我的 JIRA 问题/JSON 中没有属性“filspoetfed”,所以我不明白。据我所知,唯一的另一种可能性是它在提交时被转换为 unicode ......但如果这是问题,我不知道如何解决它。我以与 JIRA REST api 页面上相同的格式执行此操作。将不胜感激!

最佳答案

我遇到了类似的问题,通过更改请求解决了

requests.post(url, data = json.dumps(data),auth=HTTPBasicAuth(username, password), headers= header)

重要的是使用 json.dumps(data) 而不是数据,并且在 header 中也包含

'Accept': 'application/json'

希望对你有用!祝你有个愉快的一天

关于Python 请求库后置函数返回 u"Unrecognized token 'filspoetfed' : was expecting null",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31057423/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com