You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
2.0 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. [![Build Status](https://travis-ci.org/marcospereirampj/python-keycloak.svg?branch=master)](https://travis-ci.org/marcospereirampj/python-keycloak)
  2. [![Documentation Status](https://readthedocs.org/projects/python-keycloak/badge/?version=latest)](http://python-keycloak.readthedocs.io/en/latest/?badge=latest)
  3. Python Keycloak
  4. ====================
  5. **python-keycloak** is a Python package providing access to the Keycloak API.
  6. ## Installation
  7. ### Via Pypi Package:
  8. ``` $ pip install python-keycloak ```
  9. ### Manually
  10. ``` $ python setup.py install ```
  11. ## Dependencies
  12. python-keycloak depends on:
  13. * Python 3
  14. * [requests](http://docs.python-requests.org/en/master/)
  15. ### Tests Dependencies
  16. * unittest
  17. * [httmock](https://github.com/patrys/httmock)
  18. ## Bug reports
  19. Please report bugs and feature requests at
  20. https://github.com/marcospereirampj/python-keycloak/issues
  21. ## Documentation
  22. The documentation for python-keycloak is available on [readthedocs](http://python-keycloak.readthedocs.io).
  23. ## Contributors
  24. * [Agriness Team](http://www.agriness.com/pt/)
  25. ## Usage
  26. ```python
  27. from keycloak import Keycloak
  28. # Configure client
  29. keycloak = Keycloak(server_url="http://localhost:8080/auth/",
  30. client_id="example_client",
  31. realm_name="example_realm",
  32. client_secret_key="secret")
  33. # Get WellKnow
  34. config_well_know = keycloak.well_know()
  35. # Get Token
  36. token = keycloak.token("user", "password")
  37. # Get Userinfo
  38. userinfo = keycloak.userinfo(token['access_token'])
  39. # Logout
  40. keycloak.logout(token['refresh_token'])
  41. # Get Certs
  42. certs = keycloak.certs()
  43. # Get RPT (Entitlement)
  44. token = keycloak.token("user", "password")
  45. rpt = keycloak.entitlement(token['access_token'], "resource_id")
  46. # Instropect RPT
  47. token_rpt_info = keycloak.instropect(keycloak.instropect(token['access_token'], rpt=rpt['rpt'],
  48. token_type_hint="requesting_party_token"))
  49. # Instropect Token
  50. token_info = keycloak.instropect(token['access_token']))
  51. ```