Method | Description | |
---|---|---|
GetOAuthTokens ( this request ) : SimpleOAuth.Tokens |
For the Request and Access Token stages, makes the request and parses out the OAuth tokens from the server. You typically call this when making a request to get the users access tokens and combine this with the Tokens.MergeWith function. |
|
GetOAuthTokensAsync ( this request, Exception>.Action |
For the Request and Access Token stages, makes the request and parses out the OAuth tokens from the server. You typically call this when making a request to get the users access tokens and combine this with the Tokens.MergeWith function. |
|
SignRequest ( this request ) : |
Begin signing this WebRequest object with OAuth.
|
|
SignRequest ( this request, SimpleOAuth.Tokens withTokens ) : |
Begin signing this WebRequest object with OAuth using the tokens provided.
|
public static GetOAuthTokens ( this request ) : SimpleOAuth.Tokens | ||
request | this | The request that needs to be signed with OAuth. |
return | SimpleOAuth.Tokens |
public static GetOAuthTokensAsync ( this request, Exception>.Action |
||
request | this | The request that needs to be signed with OAuth. |
callback | Exception>.Action | |
return | void |
public static SignRequest ( this request ) : |
||
request | this | The request that needs to be signed with OAuth. |
return |
public static SignRequest ( this request, SimpleOAuth.Tokens withTokens ) : |
||
request | this | The request that needs to be signed with OAuth. |
withTokens | SimpleOAuth.Tokens | The |
return |