Метод | Описание | |
---|---|---|
APIWebRequest ( string method, string url, string postData ) : string |
WebRequestWithPut
|
|
WebRequest ( Method method, string url, string postData ) : string |
Web Request Wrapper
|
|
WebResponseGet ( |
Process the web response.
|
|
authorizeToken ( ) : String |
Authorize the token by showing the dialog
|
|
getAccessToken ( ) : String |
Get the access token
|
|
getRequestToken ( ) : String |
Get the linkedin request token using the consumer key and secret. Also initializes tokensecret
|
|
oAuthWebRequest ( Method method, string url, string postData ) : string |
Submit a web request using oAuth.
|
public APIWebRequest ( string method, string url, string postData ) : string | ||
method | string | WebRequestWithPut |
url | string | |
postData | string | |
Результат | string |
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 |
Результат | string |
public WebResponseGet ( |
||
webRequest | The request object. | |
Результат | string |
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) |
Результат | string |