Skip to main content

OAuth2 token validation for UTVS API

Project description

A little Python class that allows to check a token against ČVUT OAAS and get s personal number form Usermap API. Used in ÚTVS API.

Usage

from utvsapitoken import TokenClient
client = TokenClient()
info = client.token_to_info('token')

You can provide custom URIs for the constructor:

client = TokenClient(check_token_uri='http://localhost:8080/token',
                     usermap_uri='http://localhost:8080/user'))

This comes with a fake OAAS that can be used for various testing, including the tests of this very project. To start the fake server, just run:

from utvsapitoken import fakeserver
fakeserver.serve_forever(port=8080)

In order to run the testsuite, no need to start the server, just run:

PYTHONPATH=. py.test-3 -v --port 8080

You can omit the port argument to use the default (8080).

This requires Python 3 and requests.

License

This software is licensed under the terms of the MIT license, see LICENSE for full text and copyright information.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

utvsapitoken-0.0.2.tar.gz (4.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page