add params support in options
This commit is contained in:
parent
b6d4f32dcc
commit
3dbdff7096
1 changed files with 5 additions and 1 deletions
|
@ -98,6 +98,10 @@ function request_raw(uri, options)
|
||||||
options = options or {}
|
options = options or {}
|
||||||
local pr, auth, host, port, path
|
local pr, auth, host, port, path
|
||||||
|
|
||||||
|
if options.params then
|
||||||
|
uri = uri .. '?' .. http.urlencode_params(options.params)
|
||||||
|
end
|
||||||
|
|
||||||
if uri:find("%[") then
|
if uri:find("%[") then
|
||||||
if uri:find("@") then
|
if uri:find("@") then
|
||||||
pr, auth, host, port, path = uri:match("(%w+)://(.+)@(%b[]):?([0-9]*)(.*)")
|
pr, auth, host, port, path = uri:match("(%w+)://(.+)@(%b[]):?([0-9]*)(.*)")
|
||||||
|
|
Loading…
Reference in a new issue