我试图将以下curl请求转换为python请求(使用请求)
curl -X POST -H "Authorization: Bearer <TOKEN>" -H "Cache-Control: no-cache" -H "Content-Type: multipart/form-data" -F "modelId=CommunitySentiment" -F "document=the presentation was great and I learned a lot" https://api.einstein.ai/v2/language/sentiment
响应将是一个json {&#34;概率&#34;:[{ &#34;标签&#34;:&#34;肯定&#34;, &#34;概率&#34;:0.8673582 }, { &#34;标签&#34;:&#34;否定&#34;, &#34;概率&#34;:0.1316828 }, { &#34;标签&#34;:&#34;中立&#34;, &#34;概率&#34;:0.0009590242 } ] }
我的python脚本如下,但它返回400错误请求。
import requests
import json
headers = {'Authorization': 'Bearer 1ca35fd8454f74ff5496614a858bfd4c80bd196b','Cache-Control': 'no-cache','Content-Type': 'multipart/form-data'}
files = json.dumps({'modelId':'CommunitySentiment','document': 'the presentation was great and I learned a lot'})
r = requests.post('https://api.einstein.ai/v2/language/sentiment', headers=headers, data=files, verify=False)
我觉得我错过了什么或者说错了......
任何帮助都将不胜感激。
谢谢
答案 0 :(得分:2)
答案 1 :(得分:0)
您正在使用json.dumps()
函数将此JSON对象转换为字符串:
files = json.dumps({'modelId':'CommunitySentiment','document': 'the presentation was great and I learned a lot'})
Requests.post()想要一个字典,而不是一个字符串。将上一行替换为:
files = {'modelId':'CommunitySentiment','document': 'the presentation was great and I learned a lot'}
答案 2 :(得分:0)
可以使用files
参数发送多部分表单数据,例如比较:
$ curl -F "document=the presentation was great and I learned a lot" -F "modelId=CommunitySentiment" http://httpbin.org/post
{
"args": {},
"data": "",
"files": {},
"form": {
"document": "the presentation was great and I learned a lot",
"modelId": "CommunitySentiment"
},
"headers": {
"Accept": "*/*",
"Connection": "close",
"Content-Length": "303",
"Content-Type": "multipart/form-data; boundary=------------------------11650e244656399f",
"Expect": "100-continue",
"Host": "httpbin.org",
"User-Agent": "curl/7.55.1"
},
"json": null,
"origin": "X.X.X.X",
"url": "http://httpbin.org/post"
}
Python请求:
In []:
import requests
files = {
'modelId': (None, 'CommunitySentiment'),
'document': (None, 'the presentation was great and I learned a lot')
}
requests.post('http://httpbin.org/post', files=files).json()
Out []:
{
"args": {},
"data": "",
"files": {},
"form": {
"document": "the presentation was great and I learned a lot",
"modelId": "CommunitySentiment"
},
"headers": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Connection": "close",
"Content-Length": "279",
"Content-Type": "multipart/form-data; boundary=7cb959d7e990471c90c0bce7b92ab697",
"Host": "httpbin.org",
"User-Agent": "python-requests/2.18.4"
},
"json": null,
"origin": "24.13.37.157",
"url": "http://httpbin.org/post"
}
所以你的例子是:
In []:
headers = {
'Authorization': 'Bearer <TOKEN>',
'Cache-Control': 'no-cache'
}
files = {
'modelId': (None, 'CommunitySentiment'),
'document': (None, 'the presentation was great and I learned a lot')
}
requests.post('https://api.einstein.ai/v2/language/sentiment', headers=headers, files=files, verify=False).json()
Out[]:
{'object': 'predictresponse',
'probabilities': [{'label': 'positive', 'probability': 0.8673582},
{'label': 'negative', 'probability': 0.1316828},
{'label': 'neutral', 'probability': 0.0009590242}]}