我已经按照教程和来自https://github.com/tschellenbach/Django-facebook/tree/master/facebook_example的 django-facebook 示例
我已经启动并运行了(就像我运行了 syncdb 和迁移,并将 javascript 和 css 代码集成到我的模板中一样)。
当我单击模板中的链接时,它成功连接到 Facebook 并且我可以授权。但是,当它重定向时,我收到一个错误:
Request Method: POST
Request URL: http://127.0.0.1:8000/facebook/connect/?facebook_login=1
Django Version: 1.5.1
Exception Type: AttributeError
Exception Value: user or profile didnt have attribute facebook_id
Exception Location: /usr/local/lib/python2.7/dist-packages/django_facebook/utils.py in get_user_attribute, line 109
Python Executable: /usr/bin/python
Python Version: 2.7.3
这是在 django-facebook 的代码中,我不确定我的设置是否有问题。我创建了自己的 UserProfile 模型,它扩展了抽象的 FacebookProfileModel 类(我也尝试过使用 FacebookModel):
from django_facebook.models import FacebookProfileModel
from django.db.models.signals import post_save
class UserProfile(FacebookProfileModel):
user = models.OneToOneField('auth.User')
def create_profile(sender, instance, created, **kwargs):
if created:
UserProfile.objects.create(user=instance)
post_save.connect(create_profile, sender=User)
我可以看到在数据库中创建了配置文件,尽管它都是空值(外键中使用的用户 ID 除外)。不知道我做错了什么,任何指针?