1

对不起,我会说一点英语。我有一个js代码

url = '/auth'
var http_request = window.XDomainRequest || window.XMLHttpRequest;
http_request = new http_request;
http_request.open( "post", url, true, 'jack', 'pass_jack' );
http_request.send();

和 python BaseHTTPServer

def do_POST(self):
    if self.path == '/auth':

我如何在python中检查用户名和密码?

4

1 回答 1

1

XMLHttpRequest设置Authentication标题,您需要解析该标题:

auth = self.headers['Authentication']

有关用户代理如何通过该标头与服务器交互的详细信息,请参阅RFC 2617 (HTTP 身份验证:基本和摘要式访问身份验证)。

于 2013-04-15T13:04:59.497 回答