If anyone is using web2py's Janrain integration, it looks like Janrain 
recently made a change that breaks the web2py code. I submitted a pull 
request to fix it, but in the meantime, a temporary workaround is to add 
the following in the user() function (before the call to auth()):

    if request.post_vars.token:
        del request.get_vars.token

The problem is that Janrain is now passing the token to the web2py URL via 
both a POST variable and the query string. One of those two must be deleted 
before calling auth() for the current web2py code to work.

Anthony

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to