wooey / Wooey

A Django app that creates automatic web UIs for Python scripts.
http://wooey.readthedocs.org
BSD 3-Clause "New" or "Revised" License
2.11k stars 183 forks source link

Any chance to attach to OIDC clients? #364

Open Martin-Idel opened 1 year ago

Martin-Idel commented 1 year ago

Inside my company, we have a number of scripts that need to call various endpoints - all need to be authorized.

It seems there is currently no way to and I would propose this as a feature request:

Chris7 commented 1 year ago

Wooey doesn't really have any special auth features -- the wooify command more or less sets up an opinionated version of a Django reusable application.

Adding other auth providers should be done treating your project layout just like a traditional Django application.

For the auth token, that is a bit harder. I'm up for suggestions on ways to tackle that.