pyfacebook
pyfacebook copied to clipboard
error on check_session when "expires" param is "None"
Just ran into an issue where my various FB cookies were set to have an "expires" value of "None". This causes an issue in check_session()
which assumes it's going to get something that can be run through int()
.
The exception message is: invalid literal for int() with base 10: 'None'
and it's being thrown from line 1293 of facebook/__init__.py
.
I've had to work around this in d51.django.auth. You can see a test case in this commit.
Also having this problem
I just realized I have made a duplicate of this here http://github.com/sciyoshi/pyfacebook/issues#issue/30
But this also contains a solution if anyone else is interested.
this is a huge issue imo and should be fixed asap
also got this issue...
I have this problem as well
I'm also having this issue, is there a way to get around this..
I have this problem as well. Anybody found solution yet? It'd be greatly appreciated.
Having the same issue here. There seems to be a simple fix. I'll submit a pull request for it in a minute.
same problem here... :(