Method | Description | |
---|---|---|
AccessTokenGet ( string authToken, string verifier ) : void |
Exchange the request token for an access token.
|
|
AuthorizationLinkGet ( ) : string |
Get the link to Twitter's authorization page for this application.
|
|
ConstructAuthWebRequest ( Method method, string url, string postData, String &authorizedUrl, String &authorizedPostData ) : void |
Constructs the URL and POST data to use for a web request using oAuth.
|
|
WebRequest ( Method method, string url, string postData ) : string |
Web Request Wrapper
|
|
WebResponseGet ( |
Process the web response.
|
|
oAuthTwitter ( String userAgent, |
||
oAuthWebRequest ( Method method, string url, string postData ) : string |
Submit a web request using oAuth.
|
public AccessTokenGet ( string authToken, string verifier ) : void | ||
authToken | string | The oauth_token is supplied by Twitter's authorization page following the callback. |
verifier | string | |
return | void |
public ConstructAuthWebRequest ( Method method, string url, string postData, String &authorizedUrl, String &authorizedPostData ) : void | ||
method | Method | GET or POST |
url | string | The full url, including the querystring. |
postData | string | Data to post (querystring format) |
authorizedUrl | String | The url with authorization information added. |
authorizedPostData | String | The POST data with authorization information added. |
return | void |
public WebRequest ( Method method, string url, string postData ) : string | ||
method | Method | Http Method |
url | string | Full url to the web resource |
postData | string | Data to post in querystring format |
return | string |
public WebResponseGet ( |
||
webRequest | The request object. | |
return | string |
public oAuthTwitter ( String userAgent, |
||
userAgent | String | |
timeoutMs | ||
return | System |
public oAuthWebRequest ( Method method, string url, string postData ) : string | ||
method | Method | GET or POST |
url | string | The full url, including the querystring. |
postData | string | Data to post (querystring format) |
return | string |