Use this to set the url of the request For example: request.SetRequestURI("https://example.com/api/v1/users")
(uri string)
| 104 | // For example: |
| 105 | // request.SetRequestURI("https://example.com/api/v1/users") |
| 106 | func (r *Request) SetRequestURI(uri string) *Request { |
| 107 | r.uri = uri |
| 108 | return r |
| 109 | } |
| 110 | |
| 111 | // Use this to set the method of the request |
| 112 | // |
no outgoing calls