我有一个反向代理,它从第 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 做这件事。
牛魔王的故事
相关分类