Questions tagged [django-openid-auth]

A library that can be used to add OpenID support to Django applications.

A library that can be used to add OpenID support to Django applications. The library integrates with Django's builtin authentication system, so most applications require minimal changes to support OpenID login.

The library also includes the following features: * Basic user details are transfered from the OpenID server via the Simple Registration extension. * can be configured to use a fixed OpenID server URL, for use in single sign on deployments. * supports the Launchpad teams extension to request team membership information.

Project page: https://launchpad.net/django-openid-auth

18 questions
21
votes
2 answers

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', …
zjm1126
  • 63,397
  • 81
  • 173
  • 221
10
votes
2 answers

Google apps login in django

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…
user278929
6
votes
2 answers

django_openid_auth TypeError openid.yadis.manager.YadisServiceManager object is not JSON serializable

I used django_openid_auth on my project and it worked quite alright for some time. But today, I tested the application and came across this exception: Environment: Request Method: GET Request URL: http://localhost:7777/google/login/ Django…
ashkanb0
  • 742
  • 7
  • 12
5
votes
1 answer

django-allauth google integration gives "Social Network Login Failure" error

I am working on an external site to integrate django-allauth for facebook and google login. Facebook worked almost out of the box. However, with Google I get the "Social Network Login Failure" error. Here is what I have done: 1.Google APIs console:…
zaphod
  • 2,045
  • 1
  • 14
  • 18
4
votes
2 answers

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…
BryanWheelock
  • 12,146
  • 18
  • 64
  • 109
3
votes
2 answers

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…
Tom
  • 42,844
  • 35
  • 95
  • 101
3
votes
1 answer

django-openid-auth OpenID failed : unknown user

I'm trying to implement a simple single sign on Open ID authentication on Steam via django-openid-auth using Django 1.4.1 I basically used the same exact settings as provided in the official repo example : import os import django import…
rxdazn
  • 1,380
  • 1
  • 14
  • 30
2
votes
2 answers

Django ImportError: Module "social_core.backends.google" does not define a "GoogleOpenId" attribute/class

I've cloned my working Django app into a Debian based Linux distribution, I've installed all dependencies, but when trying to login with email and password or with Google account it throws me the following error: ImportError: Module…
2
votes
1 answer

logout with django and django_openid_auth

I successfully got django_openid_auth working in my django project, and can now login with my Google account. What I can't figure out is how to logout. The standard django.contrib.auth.views.logout view will logout the user, but subsequently…
chris
  • 16,324
  • 9
  • 37
  • 40
1
vote
2 answers

django-open-id: CSRF verification failed

I fallowed recommendation in this SO question: What's the best solution for OpenID with Django? and installed django-openid-auth for my application. But I just can't get it working, I always get CSRF verification failed. Request aborted. when I try…
Silver Light
  • 44,202
  • 36
  • 123
  • 164
1
vote
1 answer

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…
crodjer
  • 13,384
  • 9
  • 38
  • 52
1
vote
0 answers

avoid asking too much information on google's OpenID

I'm using openID to authenticate a user with google's accounts. I'm using openid_url = 'https://www.google.com/accounts/o8/id' ('http://openid.net/schema/namePerson/first','firstname') ('http://openid.net/schema/namePerson/last','lastname') but…
Jorge Leitao
  • 19,085
  • 19
  • 85
  • 121
0
votes
2 answers

Django-openauth-id documentation and installation guides

On a few questions this package was recommended to provide Django with OpenAuth capabilities. I'm new to Django and as one of my first projects, I'm trying to replicate StackOverflow's login and registration mechanisms. the only two documents that…
dassouki
  • 6,286
  • 7
  • 51
  • 81
0
votes
2 answers

mozilla-django-oidc issue with Azure AD B2C

I am trying to configure the "mozilla-django-oidc" package in Django. To authenticate I use Azure Active Directory B2C policy, so this is my federation server. When I click in the login button I got this URL which looks wrong to me, I will split it,…
MarcosF8
  • 1,848
  • 5
  • 19
  • 33
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…
1
2