我有一个网址: - http://example.com/GetDetails/value/abc-1234
我使用python urllib来获取网址。
value = "abc-12345"
URL = "http://example.com/GetDetails/value/{0}"
response = urllib.urlopen(URL.format(urllib.quote_plus(value))).read()
这很好用。但是如果我的值有一个斜杠,比如 - " XYZ / 1234",它会返回400 Bad请求。
我做错了什么?