Nginxは内部的に別のリクエストを呼び出し、そのリクエストデータを返します。

Nginxは内部的に別のリクエストを呼び出し、そのリクエストデータを返します。

私はREST APIを解析するためにnginxとluaを使用しています(https://openresty-reference.readthedocs.io/en/latest/Lua_Nginx_API/) 。私は、別のサーバーである別のAPIを内部的に呼び出して、その応答を返そうとしています。しかし、常に空の応答が返されます。以下は私の設定です。/studentにリクエストしています。どんな助けでも大歓迎です。

location /student {
    content_by_lua '
    local str = "test"
    local res = ngx.location.capture("/detail",{method = ngx.HTTP_POST, body = str})
    ngx.say(str)
    ';
}
location /detail {
    set $target '104.28.17.1/post';
    set $pass 'Basic Y2l28=';
    lua_need_request_body on;
    content_by_lua '
    proxy_set_header          Host            $host;
    proxy_set_header          X-Real-IP       $remote_addr;
    proxy_set_header          X-Forwarded-For $proxy_add_x_forwarded_for;
    #access_by_lua '
    proxy_set_header Authorization $pass;
    proxy_set_header Content-Type 'application/x-www-form-urlencoded';
    proxy_set_header Accept '*/*';
    proxy_set_header Connection 'keep-alive';
    proxy_pass http://$target;
}

答え1

resty.http を使用して lua で呼び出しを行い、それを本文に書き込むことができます。以下は、API への認証を伴う https 呼び出しです。

-- load requirements 
http = require "resty.http"

local function api_request(ip, api_host, api_hostname, api_cred, api_url)
  local httpc  = http.new()
  httpc:set_timeout(500)
  path = api_host .. string.format(api_url, ip)
  local response, err = httpc:request_uri(path,{
      method = "GET",
      headers = {
          ["Authorization"] ="Basic " .. api_cred,
          ["Host"] = api_hostname,
      },
      ssl_verify = false,
  })
  return response
end

関連情報