Skip to content

shizhaojingszj/example-api-authz-python

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OPA-Python API Authorization Example

This repository shows how to integrate a service written in Python with OPA to perform API authorization.

Building

Create an virtualenv and install the requirements:

virtualenv env
source env/bin/activate
pip install -r requirements.txt

Trying the example (local)

Start OPA with the example policy:

opa run -s example.rego

Run the server:

python server.py

As a manager, create a car (this should be allowed):

curl -H 'Authorization: alice' -H 'Content-Type: application/json' \
    -X PUT localhost:8080/cars/test-car \
    -d '{"model": "Toyota", "vehicle_id": "357192", "owner_id": "4821", "id": "test-car"}'

As a car admin, try to delete a car (this should be denied):

curl -H 'Authorization: kelly' \
    -X DELETE localhost:8080/cars/test-car

About

Example Python service that uses OPA for API authorization.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 85.7%
  • Open Policy Agent 14.3%