
http
心灵泽尘
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
HTTP基本认证(Basic Authentication)
https://blog.youkuaiyun.com/wochunyang/article/details/78675325转载 2018-09-23 21:09:35 · 4822 阅读 · 0 评论 -
HTTP基本认证(Basic Authentication) 实践
服务端 nodejsvar http = require('http')var server = http.createServer()server.listen(80, function () { console.log('running...')})server.on('request', function (req, res) { console.log(...原创 2018-09-23 21:12:00 · 3538 阅读 · 1 评论