获取公网地址
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)
获取公网地址
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
网友评论