django-openid-auth

How does Google generate its OpenID claimed_id tokens?

I'm using the django_openid_auth module and have it configured to automatically create new user accounts for new OpenIDs. This makes the "sign up" process really trivial, but I'm a bit worried that because of the way that Google generates it's OpenID tokens it might accidentally create a new account for an existing user, giving them the...

What does this Openid error mean: Error attempting to use stored discovery information

I'm attempting to setup an app using django-openid and openid. I'm getting the following errors and I can't figure out what is causing them. [Fri Jan 29 13:29:20 2010] [error] Generated checkid_setup request to https://www.google.com/accounts/o8/ud with assocication XXXXXXXXXXXXXX [Fri Jan 29 13:29:26 2010] [error] Error attempting to...

what is the openid url of facebook ???

i made my openid in my site like this : livejournal: { name: 'LiveJournal', label: 'Enter your Livejournal username.', url: 'http://{username}.livejournal.com/' }, wordpress: { name: 'Wordpress', label: 'Enter your Wordpress.com username.', url: 'http://{username}.wordpress.com/' ...

When is django_authopenid.views.signin_success() called from because I can't find it in project.

OpenId is vexing me. I'm trying to add a related UserProfile after a User is created from django_authopenid. As I currently understand how this module works, it seems that: User.objects.create_user(form1.cleaned_data['username'], form1.cleaned_data['email'], tmp_pwd) is only called from 2 methods: django_authopenid.views.reg...

Google apps login in django

Hello world, I'm developing a django app that integrates with google apps. I'd like to let the users login with their google apps accounts (accounts in google hosted domains, not google accounts) so they can access their docs, calendar, and whatnot. In order to do it, I downloaded and started using django_openid_auth (and thus, python-...

django openid "Error using OpenID"

I am using django-openid from http://github.com/simonw/django-openid. But no matter whatever openid i enter it gives out this error: "Error using OpenID", "The OpenID was invalid" Update: Got it to work with django-openid. It seems the error was because i was using localhost. So i had to create a local openid server to make it work. Als...