Expects ascii encoded strings - from output of urlEncodePath
(s string)
| 285 | |
| 286 | // Expects ascii encoded strings - from output of urlEncodePath |
| 287 | func percentEncodeSlash(s string) string { |
| 288 | return strings.ReplaceAll(s, "/", "%2F") |
| 289 | } |
| 290 | |
| 291 | // QueryEncode - encodes query values in their URL encoded form. In |
| 292 | // addition to the percent encoding performed by urlEncodePath() used |
no outgoing calls