Client returns an *http.Client that makes requests which are subject to the rate limit of your OAuth application.
()
| 1952 | // Client returns an *http.Client that makes requests which are subject to the |
| 1953 | // rate limit of your OAuth application. |
| 1954 | func (t *UnauthenticatedRateLimitedTransport) Client() *http.Client { |
| 1955 | return &http.Client{Transport: t} |
| 1956 | } |
| 1957 | |
| 1958 | func (t *UnauthenticatedRateLimitedTransport) transport() http.RoundTripper { |
| 1959 | if t.Transport != nil { |
no outgoing calls