有没有办法使用basic_auth获取python Bottle中当前经过身份验证的用户的用户名?

时间:2016-06-06 16:35:38

标签: python basic-authentication bottle

我想在python Bottle会话中显示当前授权的用户,我在其中使用basic_auth作为授权框架。有没有办法做到这一点?

1 个答案:

答案 0 :(得分:0)

您有两种选择:

user = request.auth[0]

user = request.environ.get('REMOTE_USER')