0

我正在尝试在我的网站中获取登录用户的 facebook 用户名。我在我的视图中有这段代码(在 Django 上):

code = request.GET.get('code')
url = 'https://graph.facebook.com/oauth/access_token?client_id=%(id)s&redirect_uri=http://127.0.0.1:8000/skempi/home&client_secret=%(secret)s&code=%(code)s'%{'id':fb_id,'secret':fb_s,'code':code}
response = urllib2.urlopen(url)
html = response.read()
dic = dict(urlparse.parse_qsl(html))
graph_url = 'https://graph.facebook.com/me?access_token='+dic.get('access_token')

当我这样做时,return HttpResponseRedirect(graph_url)我可以看到 JSON 数据。但是,我无法使用

import simplejson
d = simplejson.load(graph_url)
context ={'user':d}
return render_to_response('home.html', context, context_instance=RequestContext(request))    

我收到此错误:

'str' object has no attribute 'read'
4

1 回答 1

2

您必须先下载 JSON,simplejson 才能对其进行解码。

response = urllib2.urlopen(graph_url)
data = simplejson.load(response)
于 2012-05-16T10:43:55.430 回答