用于POST请求Python的嵌套字典到JSON

Kri*_*lal 2 python post json dictionary python-requests

我无法以嵌套字典的形式转换有效负载数据,以使用Python请求模块将其作为POST请求的数据传递.表格数据如下:

payload = {'request':  {
                'appkey': "936725A4-7D9A-11E5-81AC-86EC8D89CD5A"},
            'formdata':{
                    'currency':'US',
                    'dataview':'store_default',
                    'distinct':'_distance, clientkey',
                    'geolocs':{
                            'geoloc':[{
                                    '0':{
                                            'address1':'',
                                            'addressline':'19128, PA',
                                            'city':'Philadelphia',
                                            'country':'US',
                                            'latitude':'40.0532987',
                                            'longitude':'-75.23040379999998',
                                            'postalcode':'19128',
                                            'province':'',
                                            'state':'PA'}}]
                            },
                    'google_autocomplete':'true',
                    'limit':'250',
                    'nobf':'1',
                    'searchradius':'15|25|50|100|250|350|450|550|650|750|850|950',
                    'true':'1',
                    'where':{'partner_reseller': {'eq':'1'}}}                    
          }

r = requests.post(url,data=simplejson.dumps(payload),headers=header)
result = simplejson.loads(str(r.content))
Run Code Online (Sandbox Code Playgroud)

有人可以帮我解决结构问题,可以指出我所写的错误.我一直收到以下错误:

{'code': 1008,
 'response': {'message': 'The submitted XML is not properly formed'}} 
Run Code Online (Sandbox Code Playgroud)

我会非常感谢你的帮助.谢谢.

Not*_*chy 12

我有类似的问题,令人沮丧,但我解决了。Python 请求不适用于嵌套的 json,它们需要一层 json。它像表单(应用程序/x-www-form-urlencoded)一样处理

# Wrong
data = {'param1': {'a':[100, 200]},
        'param2': 'value2',
        'param3': False}

# You have to convert values into string:
data = {'param1': json.dumps({'a':[100, 200]}),
        'param2': 'value2',
        'param3': json.dumps(False)}
Run Code Online (Sandbox Code Playgroud)

在你的情况下:

import json
params = {
        'appkey': "936725A4-7D9A-11E5-81AC-86EC8D89CD5A"},
        'formdata':{
            'currency':'US',
            'dataview':'store_default',
            'distinct':'_distance, clientkey',
            'geolocs':{
                    'geoloc':[{
                            '0':{
                                    'address1':'',
                                    'addressline':'19128, PA',
                                    'city':'Philadelphia',
                                    'country':'US',
                                    'latitude':'40.0532987',
                                    'longitude':'-75.23040379999998',
                                    'postalcode':'19128',
                                    'province':'',
                                    'state':'PA'}}]
                    },
            'google_autocomplete':'true',
            'limit':'250',
            'nobf':'1',
            'searchradius':'15|25|50|100|250|350|450|550|650|750|850|950',
            'true':'1',
            'where':{'partner_reseller': {'eq':'1'}}}                    
          }
payload = {'request':  json.dumps(params) }

r = requests.post(url,data=payload) # important to keep payload as json!!!
result = r.text # or depends what the return is..
Run Code Online (Sandbox Code Playgroud)


Rya*_*cox 5

我的建议是使用JSON参数,让请求将对象编码为JSON,并让请求设置Content-Type标头application/json.

Web服务很可能假设您正在传递XML,除非您通过将Content-Type设置为application/json来指定您传递JSON.(这个Web API也可能真的需要XML,服务的文档会告诉你)

requests.post(url,json=payload,headers=header)