utvsapitoken

OAuth2 token validation for UTVS API


Keywords
oauth2
License
MIT
Install
pip install utvsapitoken==0.0.2

Documentation

utvsapitoken

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.