openresty http

Posted frankltf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了openresty http相关的知识,希望对你有一定的参考价值。

openresty http

  • openresty默认没有提供http客户端,需要第三方提供插件。
  • 下载方式:
wget?https://raw.githubusercontent.com/pintsized/lua-resty-http/master/lib/resty/http_headers.lua??
wget?https://raw.githubusercontent.com/pintsized/lua-resty-http/master/lib/resty/http.lua??
  • 将文件放在 /openresty/lualib/resty/目录下即可
  • 使用方式
local res, err = httpc:request_uri(uri, {  
    method = "POST/GET",  ---请求方式
    query = str,  ---get方式传参数
    body = str,     ---post方式传参数
    path = "url" ----路径
    headers = {  ---header参数
        ["Content-Type"] = "application/json",  
    }  
})

以上是关于openresty http的主要内容,如果未能解决你的问题,请参考以下文章

验证 Openresty+Lua+GraphicsMagick

新工具介绍:OpenResty Demo 工具链

centos 7 源码安装openresty

在 Ubuntu 上使用源码安装 OpenResty

openresty http

使用Openresty加快网页速度