URL 在 Golang 中包含大括号的错误请求 400
Bad request 400 with URL containing curly brackets in Golang
来自Python
import requests
requests.get('https://git.eclipse.org/r/changes/?q=since:{2018-01-01 00:00:00.000}+AND+until:{2018-01-01 22:59:59.999}')
很有魅力。
在围棋中,
client := &http.Client{Timeout: time.Second * 10}
response, err := client.Get("https://git.eclipse.org/r/changes/?q=since:{2018-01-01 00:00:00.000}+AND+until:{2018-01-01 22:59:59.999}")
导致错误请求 (400)。
我假设问题是 URL 中大括号的编码问题。我该如何解决?
您需要转义查询字符串:
client.Get("https://git.eclipse.org/r/changes/?q=" + url.QueryEscape("since:{2018-01-01 00:00:00.000}+AND+until:{2018-01-01 22:59:59.999}"))
您可能需要将 +
改回空格,因为它们正在被转义。
来自Python
import requests
requests.get('https://git.eclipse.org/r/changes/?q=since:{2018-01-01 00:00:00.000}+AND+until:{2018-01-01 22:59:59.999}')
很有魅力。
在围棋中,
client := &http.Client{Timeout: time.Second * 10}
response, err := client.Get("https://git.eclipse.org/r/changes/?q=since:{2018-01-01 00:00:00.000}+AND+until:{2018-01-01 22:59:59.999}")
导致错误请求 (400)。
我假设问题是 URL 中大括号的编码问题。我该如何解决?
您需要转义查询字符串:
client.Get("https://git.eclipse.org/r/changes/?q=" + url.QueryEscape("since:{2018-01-01 00:00:00.000}+AND+until:{2018-01-01 22:59:59.999}"))
您可能需要将 +
改回空格,因为它们正在被转义。