我正在关注亚马逊ec2机器上托管的瓶子管理员。我在配置文件中使用了用户名和密码,但登录失败了。
这是我用于身份验证的内容
def is_accessible(self):
auth = request.authorization or request.environ.get('REMOTE_USER') # workaround for Apache
if not auth or (auth.username, auth.password) != app.config['ADMIN_CREDENTIALS']:
raise HTTPException('', Response('You have to an administrator.', 401,
{'WWW-Authenticate': 'Basic realm="Login Required"'}
))
return True