python-openid icon indicating copy to clipboard operation
python-openid copied to clipboard

OpenID library for Python

Results 63 python-openid issues
Sort by recently updated
recently updated
newest added

I've looked through the code you offer and it seemed it is designed for OpenID providers and consumers. I am looking at a module that would help authenticating to an...

Perhaps someone here can comment on this issue or how to fix it? https://github.com/mitsuhiko/flask-openid/issues/11

I am trying to use askbot which django based app which makes use python-openid and I am getting following error on my website. "Received "invalidate_handle" from server " Here is...

This seemed too lightweight of an issue for a pull request, but the _toMessage_ method of _openid.extension.Extension_ references the _warnings_ module without it having been imported. Test case: ``` Python...

`openid.server.server.OpenIDResponse.__init__` uses `request.namespace` instead of `request.message.getOpenIDNamespace()`, which generates deprecation warnings.

In one of our test setup, the system time was backward from the actual time. Due to this reason, python-openid RP library fails in the final stage authentication, even though...

The example consumer falls down if the OP sends an authentication response to the RP with POST method In that case the example consumer reports 501 error: Unsupported method (POST)...

https://github.com/openid/python-openid/blob/master/openid/extensions/ax.py#L546 says: `@raises KeyError: If the attribute was not sent in this response` However, KeyError is never raised explicitely and `values = self.data.get(type_uri)` will return `None` when `type_uri` isn't found...

When my OpenID provider gives me response containing both signed and unsigned fields, I get an error: ``` SuccessResponse.getSignedNS: (http://openid.net/srv/ax/1.0, mode) not signed. Traceback (most recent call last): File "/usr/lib/python2.7/site-packages/flask/app.py",...

When OpenID requests are created for provider which has several OpenID versions in its XRDS document, the most prior one is not used but instead they are iterated. I believe...