0
我想看看是否有可能獲取訪問者的Windows用戶名在以下配置:如何從CherryPy上的Bottle獲取訪問者的Windows用戶名?
from bottle import route, run, template, request
@route('/')
def index():
return 'Hello World'
run(host = '0.0.0.0', port=1986, server ='cherrypy')
是否有可能得到訪問者的Windows用戶名很容易,而不必上運行此IIS服務器?