This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
cuiyiming-lua-sapp/test/new_http_service/http_service.lua

14 lines
275 B
Lua
Raw Normal View History

2019-04-17 14:30:11 +08:00
function main()
while true do
headers = get_http_request_headers(ctx)
for k, v in pairs(headers) do
print(k, v)
end
end
end
function main()
headers = get_http_request_headers()
content = get_http_content()
---handle