尝试用`https`连接 BrowserID,, 顺带求`http`入门资料...
发布于 13 年前 作者 jiyinyiyong 3855 次浏览 最后一次编辑是 9 年前

微博登陆还不会玩, 只好磨下这个,
Wiki 上写的模块, browserid-verifier 传到 nodejitsu 到 NAE 都失败, 另一个文档不好懂
干脆自己用 https 写, http熟悉度太低, 一半出错只好去 StackOverflow 求助了
剩下两个文件放gist了, 本机测试是成功的, 可总怀疑有问题… 多多指教…

ll = console.log

fs = require 'fs'
page = fs.readFileSync 'page.html', 'utf-8'
query = require 'querystring'

client = fs.readFileSync 'client.coffee', 'utf-8'
page = page.replace '@@@', client

handler = (req, res) ->
  res.writeHead 200, 'Content-Type': 'text/html'
  res.end page

http = require 'http'
https = require 'https'
app = http.createServer handler
app.listen 8000

io = (require 'socket.io').listen app
io.set 'log level', 1
io.sockets.on 'connection', (socket) ->
  socket.emit 'ready', 'go'

  socket.on 'assertion', (data) ->
    msg = query.stringify
      assertion: data
      audience: 'localhost:8000'

    options =
      host: 'browserid.org'
      port: 443
      path: '/verify'
      method: 'POST'
      headers:
        'Content-Type': 'application/x-www-form-urlencoded'
        'Content-Length': msg.length
    request = https.request options, (response) ->
      str = ''
      ll 'prepare'
      response.on 'data', (chunk) ->
        str += chunk
      response.on 'end', ->
        ll str
    request.write msg
    request.end()
    request.on 'error', (data) ->
      ll data

之前尝试用request模块去做, 好像方便点, http
真是绕不过去了. 除了 Node 关于 http 部分的文档… 还有合适的教程可以看吗?

回到顶部