net/url.Values.Encode (method)
21 uses
net/url (current package)
url.go#L963: func (v Values) Encode() string {
net/http
client.go#L877: return c.Post(url, "application/x-www-form-urlencoded", strings.NewReader(data.Encode()))
cloud.google.com/go/storage
storage.go#L587: fmt.Fprintf(buf, "%s\n", canonicalQueryString.Encode())
storage.go#L661: u.RawQuery = canonicalQueryString.Encode()
storage.go#L729: u.RawQuery = q.Encode()
github.com/aws/aws-sdk-go/aws/signer/v4
v4.go#L390: ctx.Request.URL.RawQuery = ctx.Query.Encode()
v4.go#L654: ctx.Request.URL.RawQuery = strings.Replace(ctx.Query.Encode(), "+", "%20", -1)
github.com/aws/aws-sdk-go/private/protocol/query
build.go#L31: r.SetBufferBody([]byte(body.Encode()))
build.go#L34: r.HTTPRequest.URL.RawQuery = body.Encode()
github.com/aws/aws-sdk-go/private/protocol/rest
build.go#L129: r.HTTPRequest.URL.RawQuery = query.Encode()
github.com/golang-migrate/migrate/v4
util.go#L60: ux.RawQuery = vx.Encode()
golang.org/x/net/context/ctxhttp
ctxhttp.go#L70: return Post(ctx, client, url, "application/x-www-form-urlencoded", strings.NewReader(data.Encode()))
golang.org/x/oauth2
oauth2.go#L175: buf.WriteString(v.Encode())
golang.org/x/oauth2/google
google.go#L179: tokenURI = tokenURI + "?" + v.Encode()
golang.org/x/oauth2/internal
token.go#L169: req, err := http.NewRequest("POST", tokenURL, strings.NewReader(v.Encode()))
golang.org/x/pkgsite/internal/frontend
paginate.go#L39: p.baseURL.RawQuery = newQuery.Encode()
golang.org/x/pkgsite/internal/index
index.go#L54: return fmt.Sprintf("%s?%s", c.url, values.Encode())
golang.org/x/pkgsite/internal/middleware
betaRedirect.go#L73: RawQuery: values.Encode(),
google.golang.org/api/googleapi/transport
apikey.go#L42: newReq.URL.RawQuery = args.Encode()
google.golang.org/api/idtoken
compute.go#L42: urlSuffix := "instance/service-accounts/default/identity?" + v.Encode()
google.golang.org/api/internal/gensupport
params.go#L43: return url.Values(u).Encode()
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |