Class Web.Auth.OAuth.Request
- Description
Class for building a signed request and querying the remote service.
- Variable base_string
protected string Web.Auth.OAuth.Request.base_string
- Description
The signature basestring.
- Variable method
protected string Web.Auth.OAuth.Request.method
- Description
String representation of the HTTP method.
- Variable params
protected Params Web.Auth.OAuth.Request.params
- Description
The parameters to send.
- Variable uri
protected Standards.URI Web.Auth.OAuth.Request.uri
- Description
The remote endpoint.
- Method create
Web.Auth.OAuth.Request Web.Auth.OAuth.Request(string|Standards.URI uri, string http_method, void|Params params)
- Description
Creates a new Request.
- See also
- Parameter uri
The uri to request.
- Parameter http_method
The HTTP method to use. Either
"GET"
or"POST"
.