发送字典列表作为带有请求的字典值

Jef*_*oup 0 python django post python-requests oauth2

我有客户端服务器应用程序。我定位了麻烦,并且有这样的逻辑:

客户:

# -*- coding: utf-8 -*-
import requests


def fixing:
    response = requests.post('http://url_for_auth/', data={'client_id': 'client_id', 
                             'client_secret':'its_secret', 'grant_type': 'password', 
                             'username': 'user', 'password': 'password'})
    f = response.json()
    data = {'coordinate_x': 12.3, 'coordinate_y': 8.4, 'address': u'\u041c, 12', 
            'products': [{'count': 1, 'id': 's123'},{'count': 2, 'id': 's124'}]}
    data.update(f)
    response = requests.post('http://url_for_working/, data=data)
    response.text #There I have an Error about which I will say later
Run Code Online (Sandbox Code Playgroud)

oAuth2运作良好。但是在服务器端,request.data中没有任何产品

<QueryDict: {u'token_type': [u'type_is_ok'], u'access_token': [u'token_is_ok'], 
             u'expires_in': [u'36000'], u'coordinate_y': [u'8.4'], 
             u'coordinate_x': [u'12.3'], u'products': [u'count', u'id', u'count', 
             u'id'], u'address': [u'\u041c, 12'], u'scope': [u'read write'], 
             u'refresh_token': [u'token_is_ok']}>
Run Code Online (Sandbox Code Playgroud)

QueryDict的这一部分让我难过...

'products': [u'count', u'id', u'count', u'id']
Run Code Online (Sandbox Code Playgroud)

当我尝试制作python字典时:

request.data.dict()
... u'products': u'id', ...
Run Code Online (Sandbox Code Playgroud)

并且确保其他字段与Django序列化程序的验证配合良好。但事实并非如此,因为那里的价值观不正确。

Jef*_*oup 5

看起来请求(因为它具有默认的x-www-encoded-form形式)不能包含字典列表作为dict中键的值,因此...在这种情况下,我应该使用json。最后,我做了这个功能:

import requests
import json


def fixing:
    response = requests.post('http://url_for_auth/', data={'client_id': 'client_id', 
                         'client_secret':'its_secret', 'grant_type': 'password', 
                         'username': 'user', 'password': 'password'})
    f = response.json()
    headers = {'authorization': f['token_type'].encode('utf-8')+' '+f['access_token'].encode('utf-8'), 
               'Content-Type': 'application/json'}
    data = {'coordinate_x': 12.3, 'coordinate_y': 8.4, 'address': u'\u041c, 12', 
        'products': [{'count': 1, 'id': 's123'},{'count': 2, 'id': 's124'}]}
    response = requests.post('http://url_for_working/', data=json.dumps(data), 
                              headers=headers)
    response.text
Run Code Online (Sandbox Code Playgroud)

在那里我得到了正确的回应。解决了!