ExtendedLoginForm() does not take request as the first argument. "signals" is the third argument, so it is seeing facebook_login as the "signals" argument, and of course, you also have an additional "signals" argument, hence the error. Change to:
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to web...@googlegroups.com
I see, you're using the FaceBookAccount example from the Access Control chapter. I don't think that example code will work as is with ExtendedLoginForm, which requires the alternate login object to have a login_form() method. You'll probably have to implement a login_form() method for the class.
Anthony
Alec Taylor
unread,
Aug 22, 2012, 11:14:10 PM8/22/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to web...@googlegroups.com
What would such a `login_form()` require?
> --
>
>
>
Anthony
unread,
Aug 23, 2012, 12:59:12 AM8/23/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to web...@googlegroups.com
On Wednesday, August 22, 2012 11:14:10 PM UTC-4, Alec Taylor wrote:
What would such a `login_form()` require?
Not sure. Maybe look at the code in extended_login_form.py and rpx_account.py for hints.