因此,我花了很多时间在此上,在我看来,这应该是一个简单的修复。我正在尝试使用Facebook的身份验证在我的网站上注册用户,并且正在服务器端进行操作。我已经到了获取访问令牌的地步,并且当我去:
https://graph.facebook.com/me?access_token=MY_ACCESS_TOKEN
我得到的信息就是这样的字符串:
{"id":"123456789","name":"John Doe","first_name":"John","last_name":"Doe","link":"http:\/\/www.facebook.com\/jdoe","gender":"male","email":"jdoe\u0040gmail.com","timezone":-7,"locale":"en_US","verified":true,"updated_time":"2011-01-12T02:43:35+0000"}
似乎我应该可以使用dict(string)它,但出现此错误:
dict(string)
ValueError: dictionary update sequence element #0 has length 1; 2 is required
所以我尝试使用Pickle,但收到此错误:
KeyError: '{'
我尝试使用django.serializers反序列化它,但结果相似。有什么想法吗?我觉得答案必须很简单,而且我很愚蠢。谢谢你的帮助!
django.serializers
此数据为JSON!如果您使用的是Python 2.6+,则可以使用内置json模块反序列化它,否则可以使用出色的第三方simplejson模块。
json
simplejson
import json # or `import simplejson as json` if on Python < 2.6 json_string = u'{ "id":"123456789", ... }' obj = json.loads(json_string) # obj now contains a dict of the data