Skip to content

Instantly share code, notes, and snippets.

@dongyuwei
Last active October 17, 2022 07:08
Show Gist options
  • Save dongyuwei/71eb81395def3640048b16c268bfdc68 to your computer and use it in GitHub Desktop.
Save dongyuwei/71eb81395def3640048b16c268bfdc68 to your computer and use it in GitHub Desktop.
test inspect.lua and http request with luasocket
local inspect = require('inspect')
local http = require("socket.http")
inspect(http)
r, c, h = http.request('https://www.baidu.com/')
print(r)
print(c)
inspect(h)
@dongyuwei
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment