我正在尝试向我的 django tastepie 资源发出请求以更新用户信息。到目前为止,我可以发出 post 请求,但 put 不起作用。
在我的 api.py 我有这个:
class UserResource(ModelResource):
class Meta:
queryset = User.objects.all()
resource_name = 'auth/user'
fields = ['username', 'email']
authentication = BasicAuthentication()
authorization = DjangoAuthorization()
filtering = {
"username": ('exact',),
}
class UserSignUpResource(ModelResource):
class Meta:
object_class = User
resource_name = 'register_user'
fields = ['username', 'email' , 'password']
allowed_methods = ['put','post']
authentication = BasicAuthentication()
authorization = DjangoAuthorization()
queryset = User.objects.all()
def obj_create(self, bundle, request=None, **kwargs):
bundle = super(UserSignUpResource, self).obj_create(bundle)
为了测试我正在使用这个:
import urllib2, json
def post():
def basic_authorization(user, password):
s = user + ":" + password
return "Basic " + s.encode("base64").rstrip()
data = json.dumps({'username':'david_000', 'email':'davidupdat@gmail.com', 'password':'xxx','provider':'twitter','extra_data':{'access_token':'xxx','id':'xxx'}})
req = urllib2.Request("http://192.168.1.114:8080/api/stats/register_user/",
headers = {"Authorization": basic_authorization("xxx","xxx"),"Content-Type": "application/json"}, data = data)
req.get_method = lambda:'PUT'
f = urllib2.urlopen(req)
post()
我收到此错误:
Traceback (most recent call last):
File "test.py", line 18, in <module>
post()
File "test.py", line 16, in post
f = urllib2.urlopen(req)
File "/usr/lib/python2.7/urllib2.py", line 126, in urlopen
return _opener.open(url, data, timeout)
File "/usr/lib/python2.7/urllib2.py", line 406, in open
response = meth(req, response)
File "/usr/lib/python2.7/urllib2.py", line 519, in http_response
'http', request, response, code, msg, hdrs)
File "/usr/lib/python2.7/urllib2.py", line 444, in error
return self._call_chain(*args)
File "/usr/lib/python2.7/urllib2.py", line 378, in _call_chain
result = func(*args)
File "/usr/lib/python2.7/urllib2.py", line 527, in http_error_default
raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
urllib2.HTTPError: HTTP Error 400: BAD REQUEST
更新:
我试试这个,但它给了我同样的错误:
def obj_update(self, bundle, request=None, **kwargs):
bundle = super(UserSignUpResource, self).obj_update(bundle)
任何的想法?提前致谢!