我有一个反向代理,它从第 3 方 API 返回正文响应。这个第 3 方 API 使用分页,所以我的反向代理路径需要页码参数。我无法fmt.Sprint将参数从反向代理 URL 传递到 3rd Party API 请求。func (s *Server) getReverseProxy(w http.ResponseWriter, r *http.Request) { keys, ok := r.URL.Query()["page"] if !ok || len(keys[0]) < 1 { log.Println("Url Param 'page' is missing") return } // Query()["key"] will return an array of items, // we only want the single item. key := keys[0] log.Println("Url Param 'page' is: " + string(key)) // create http client to make GET request to reverse-proxy client := &http.Client{} // create 3rd party request // creating this request is causing me the issue due to the page parameter req, err := http.NewRequest("GET", fmt.Sprint("https://url.com/path?&page%5Bsize%5D=100&page%5Bnumber%5D=%s\n", key), nil) // more stuff down here but omitted for brevity.}查看第http.NewRequest3 方 api 请求,该%s\n部分将是它们key传递给page parameter.如何正确将此变量传递给 url?在 python 中,我希望使用的是 f 字符串。不确定我是否正确地为 Go 做这件事。
1 回答
牛魔王的故事
TA贡献1830条经验 获得超3个赞
您可能应该使用net/url包构建 URL 和查询。这样做的好处是更安全。
params := url.Values{
"page[size]": []string{"100"},
"page[" + key + "]": []string{"1"},
}
u := &url.URL{
Scheme: "https",
Host: "url.com",
Path: "/path",
RawQuery: params.Encode(),
}
req, err := http.NewRequest("GET", u.String(), nil)
尝试使用fmt.Sprintf()构造 URL 更有可能适得其反。
如果要使用 构造 URL fmt.Sprintf,则需要转义%格式字符串中的所有 ,并转义参数中的特殊字符。
fmt.Sprint("https://url.com/path?&page%%5Bsize%%5D=100&page%%5B%s%%5D=1",
url.QueryEscape(key))
该url.QueryEscape()函数对字符串中的字符进行转义,以便可以安全地将其放置在 URL 查询中。如果您使用url.Values和构造 URL,则没有必要url.URL。
- 1 回答
- 0 关注
- 92 浏览
添加回答
举报
0/150
提交
取消