Tagged Questions
The authkit tag has no wiki summary.
4
votes
5answers
3k views
User Authentication in Pylons + AuthKit
I am trying to create a web application using Pylons and the resources on the web point to the PylonsBook page which isn't of much help. I want authentication and authorisation and is there anyway to ...
3
votes
3answers
506 views
User authentication on GAE
I'm working on a project that will require user authentication. Currently I'm planning on running the project on GAE. For various reasons I'd rather have my own authentication system rather than use ...
3
votes
1answer
513 views
Pylons and AuthKit OpenID problem
I have troubles setting up the support for openID authentication, using authkit and pylons.
I set up everything as described in the cookbook, but still get the following error:
File ...
2
votes
1answer
92 views
can pylons + authkit ignore particular responses with 401 status?
i am writing a pylons app, and I am using authkit for authentication/authorization. if a user is not logged in and hits a page that requires authorization, authkit swallows the 401 (not authenticated) ...
1
vote
0answers
127 views
Authkit - deferring action for HTTP '401' response to client application
Form, Redirect and Forward all send an unauthenticated user to a Form on a login page specified within an Authkit middleware application. I'd like to allow a client application to request a service ...
1
vote
1answer
48 views
How can I do authkit authentication with Cookies and/or a GET/POST param?
I am building an application and I would like to try and use authkit for authentication and authorization. However, I know that I will be using swfupload and will not be able to rely on the auth ...
1
vote
3answers
465 views
Python-LDAP integration [closed]
I need to integrate Python with LDAP. I just need to choose the best way to make Python talk to LDAP. I understand there are many ways to do this, including using a prebuilt toolkit such as the ...
1
vote
2answers
559 views
Customize login page template for Authkit with Pylons?
I'm new to both Pylons and AuthKit. I have basic authentication via AuthKit working in my application, but I don't know how to customize the template for the login page. The one included with ...
1
vote
1answer
322 views
How to make authkit session cookie HttpOnly in pylons?
I use authkit module with Pylons and I see that session cookie it sets (aptly named authkit) is not set to be HttpOnly.
Is there a simple way to make it HttpOnly? (By "simple" I mean the one that ...
0
votes
0answers
128 views
Python AuthKit authentication problem with form, cookie
I'm trying to use AuthKit to provide user authentication.
I followed the simple example from http://pylonsbook.com/en/1.1/authentication-and-authorization.html
(under 'Authentication Middleware').
...
0
votes
1answer
57 views
Pylons custom authorizer with Authkit?
how do i setup authkit for more authorizer? i want to give certain users admin rights, but only for their own page. thanks
0
votes
1answer
260 views
Pylons: Set global variable for Authkit user
How can I can set a global variable for the username of the logged-in user? At the moment i have the following code in all my controllers to get the username. I rather set it as a global variable if ...
0
votes
1answer
38 views
What does this code from AuthKit do? (where are these functions and methods defined?)
I am trying to implement my own authentication method for AuthKit and am trying to figure out how some of the built-in methods work. In particular, I'm trying to figure out how to update the ...
0
votes
1answer
647 views
Why would I get an intermittent UnboundExecutionError from SQLAlchemy on second WSGI request?
I am building a small WSGI application and I am having an intermittent problem with SQLAlchemy throwing an UnboundExceptionError.
When it happens, it seems to happen exclusively on the second request ...