Questions tagged [django-authopenid]

django-authopenid is a pluggable Django app that allows you to authenticate your users while using the django auth contrib

django-authopenid is a pluggable Django app that allows you to authenticate your users while using the django auth contrib.

This application allow a user to connect to you website with :

  • legacy account : username/password

  • openid url

9 questions
3
votes
1 answer

What causes the Openid error: Received "invalidate_handle" from server

I'm new to openid, and I am getting an "invalidate_handle" and I have no idea what to do to fix it. I'm using django_authopenid [Thu Apr 29 14:13:28 2010] [error] Generated checkid_setup request to https://www.google.com/accounts/o8/ud with…
BryanWheelock
  • 12,146
  • 18
  • 64
  • 109
3
votes
2 answers

Value too long for type character varying(30)

I'm getting this error message on my email field but i'm using the built in django auth system. Is there an easy way to override it. When the user registers the email address is added into the built in field within the built in user system. Would be…
JDavies
  • 2,730
  • 7
  • 34
  • 54
1
vote
1 answer

How do I set a default group with django-authopenid?

I have a django app that uses django-authopenid as the sole registration method. I have registration in my installed apps, which django-authopenid uses. An ideal solution would allow me to run arbitrary code on the user object when they register. …
Brigand
  • 84,529
  • 20
  • 165
  • 173
1
vote
0 answers

django-openid-auth django + openid getting blocked by adblock

I'm using Python's django-openid-auth to do OpenID Authentication in my site (by means of an external OpenID provider). The way it works is you set a link towards local URL (say /openid/login) and that URL handles the login automatically. Problem…
Bruno
  • 479
  • 1
  • 8
  • 15
0
votes
0 answers

How to get oauth access token data saved in database

To be able to make API calls on behalf of the user who granted access to django app, I have done the following : I have added the field below to the UserAssociation class in the django-authopenid models (see link line 54) : data_access_token =…
novis
  • 15
  • 6
0
votes
2 answers

django-authopenid provider icons / buttons missing

I followed the setup instructions for django authopenid application. As far as I can tell it is working properly. However, I cannot see the provider buttons/icons for yahoo, google, etc on the sign in with openID portion. Anyone had this problem?…
rich
  • 595
  • 1
  • 7
  • 15
0
votes
1 answer

Django Open ID - Assign permissions to users who have never logged in by email

I'm using django-auth with the django-auth-openid extension to use OpenID (specifically, Google) to log users into my site. I have a user base of about 90 who will be using the site. All of them have Google accounts, and will be using them to access…
0
votes
1 answer

How to moderate django_openid_auth

I am implementing openid feature using django_openid_auth library which is quite amazing.. However I am looking for very specific moderation settings. Although openid is made available for everyone..I am looking to implement the below rules OpenId…
Iamcool
  • 1,387
  • 2
  • 12
  • 24
0
votes
1 answer

Django invitation login using only OAuth

I'm trying to create a site with invite only login. In addition the invited users can sign in only by using some OAuth login method. I'm using Django 1.4. I'm using apps github.com/lizrice/django-allauth and github.com/lizrice/django-invitation In…