I think the problem is that you need this:

from gluon.contrib.login_methods.rpx_account import RPXAccount
auth.settings.actions_disabled=['register','change_password','request_reset_password']
auth.settings.login_form = RPXAccount(request,
                                      api_key='...',
                                      domain='...',
                                      url = "
http://localhost:8080/%s/default/user/login"; % request.application)

or this (preferred):

from gluon.contrib.login_methods.rpx_account import use_janrain
use_janrain(auth, filename='private/janrain.key')

not both. Moreover they should always come after auth.define_tables()


On Friday, 7 December 2012 11:18:40 UTC-6, Jeff Kusi wrote:
>
> Could somebody address this issue please?  Mine is also doing the same 
> thing.
> here's how my config looks:
> -----------------------
> from gluon.tools import Auth, Crud, Service, PluginManager, prettydate
> auth = Auth(db)
> from gluon.contrib.login_methods.rpx_account import RPXAccount
>
> auth.settings.actions_disabled=['register','change_password','request_reset_password']
> auth.settings.login_form = RPXAccount(request,
>                                       api_key='...',
>                                       domain='...',
>                                       url = "
> http://localhost:8080/%s/default/user/login"; % request.application)
>
> crud, service, plugins = Crud(db), Service(), PluginManager()
> auth.define_tables(username=False, signature=False)
>
> from gluon.contrib.login_methods.rpx_account import use_janrain
> use_janrain(auth, filename='private/janrain.key')
> ---------------
>
> The janrain private file :
> -----------
> helloworldApp:alsdkjfasldkjfa;sldkfjasdfads
> ------
>
> On Tuesday, April 17, 2012 10:20:04 AM UTC-4, simon wrote:
>>
>> Is the janrain interface not currently working or have I missed 
>> something? I can login using janrain but I cannot navigate to any other 
>> pages. It is just stuck on a screen that says "welcome back".
>>
>>
>>
>>

-- 



Reply via email to