problem got solved--
1292 if params.get('expires'):
1293 self.session_key_expires = int(params['expires'])
I've just changed it to:
1292 if params.get('expires'):
1293 try:
1294 self.session_key_expires = int(params['expires'])
1295 except ValueError:
1296 pass
It works this way, but it must be fixed in pyFacebook next version.
this is the solution
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
No comments:
Post a Comment