我有一个面向所有用户的facebook好友表,并希望为User提供多个字段,但在保存数据方面遇到了问题。
这是我的代码:
我的模特:
class FacebookFriend(models.Model):
user = models.ManyToManyField(User)
name = models.CharField(max_length="100", unique=False, db_index=True)
fid = models.CharField(max_length="30", unique=False, db_index=True)
birthday = models.DateTimeField(default="1776-07-04")
gender = models.CharField(max_length="10", default="NoData")
avatar = models.URLField()
我的管理层:
from django.db import models
from django.contrib.auth.models import User
from facepy import GraphAPI
from social_auth.signals import socialauth_registered
def facebook_friend_data(sender, user, response, details, **kwargs):
if sender == FacebookBackend:
dict = UserSocialAuth.objects.filter(user=user.id).get()
access_token = dict.extra_data['access_token']
uid = dict.uid
graph = GraphAPI(access_token)
friends = graph.get(uid + '/friends?fields=id,name,birthday,gender,picture')
from datetime import datetime
from urllib2 import HTTPError
try:
for f in friends['data']:
friend = FacebookFriend()
friend.fid = f['id']
friend.name = f['name']
try:
friend.gender = f['gender']
except KeyError:
pass
try:
bs= f['birthday'].split('/')
if len(f['birthday'])==10:
formatted_bday= bs[2] + '-' + bs[0] + '-' + bs[1]
else:
formatted_bday= '1900-' + bs[0] + '-' + bs[1]
try:
friend.birthday = datetime.strptime(formatted_bday, '%Y-%m-%d')
except ValueError:
pass
except KeyError:
pass
friend.avatar = f['picture']
friend.save()
friend.user.add(user)
except HTTPError:
pass
socialauth_registered.connect(facebook_friend_data, sender=None)
我的错误:
IntegrityError at /complete/facebook/
duplicate key value violates unique constraint "users_facebookfriend_fid_key"
我正在使用Django Social Auth进行Facebook处理。我知道问题出在我的模型中以及如何保存数据,我不知道该怎么做。
谢谢,如果您还有其他需要,请告诉我。
答案 0 :(得分:0)
我猜你的FacebookFriend
的第一个版本有一个fid
字段unique=True
。在升级模型后,您忘记重新创建数据库。此外,更改模型时manage.py syncdb
不起作用。删除现有的表或数据库,然后再次运行manage.py syncdb
。还有一个名为south
或django-south
的奇特工具,可以帮助django中的架构/数据迁移。