Tagged Questions
The django-openid-auth tag has no wiki summary.
13
votes
3answers
5k views
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/'
},
...
8
votes
2answers
2k views
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 ...
3
votes
1answer
867 views
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 ...
2
votes
1answer
122 views
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 ...
2
votes
2answers
546 views
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 ...
1
vote
2answers
92 views
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 ...
1
vote
2answers
619 views
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 ...
1
vote
1answer
141 views
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 ...
0
votes
0answers
8 views
How do I know if user was authenticated thru django-openid-auth or the normal django.auth?
I created a login system for my django app that authenticates users in two ways. One is thru a login form provided by the django-registration app. The other is thru django-openid-auth.
A user can ...
0
votes
0answers
103 views
How to associate multiple openid accounts in a user using django-openid-auth
Im using django-openid-auth and openid-selector for my login mechanish since I dont want to store users password, after the user successfully logged in using openid I redirect them to their user ...