美文网首页
luvit 使用 http 获取公网地址

luvit 使用 http 获取公网地址

作者: 自由快挂 | 来源:发表于2017-04-28 00:21 被阅读49次

    获取公网地址

    local http = require('http')
    
    local req = http.get('https://api.ipify.org', function ( res )
        res:on('data', function (ip)
          p("ip", ip)
        end)
        res:on('end', function ()
          p('stream ended')
        end)
    end)
    
    

    相关文章

      网友评论

          本文标题:luvit 使用 http 获取公网地址

          本文链接:https://www.haomeiwen.com/subject/mgfozttx.html