I understand as per dash.plot.ly/authentication
You can have BasicAuth and Plotly OAuth (I don’t need this as of now as I am using this dashboard as a test project for our university student research team)
Is there a way that you can use BasicAuth to provide access through another webpage?
I can create a flask login webpage using the underlying flask server i.e
server = Flask(__name__)
Then collect the passwords from that webpage and then pass it to BasicAuth to grant access?
Can this be done?
I looked at Flask-Login suport for dash but it might not work with the constant dash updates.
also https://github.com/gaw89/dash-flask-login seems not to work with deployed apps.
or is there any accepted way such as using flask-login to grant access to Dash? Any help here would be great. Thanks a lot.