我正在使用下面的代碼發佈到Facebook的用戶配置文件的狀態更新,但每次它只是返回無法更新這裏有什麼錯?無法更新Facebook的狀態消息
def fb_post_message(request):
import urllib2
try:
urllib2.urlopen('https://graph.facebook.com/me/feed',"message='hello world'")
except:
return HttpResponse('could not submit')
return HttpResponse('submitted');
請重新格式化您的代碼,以便它可讀 – Philipp 2010-06-28 06:11:35