Method | Description | |
---|---|---|
ApplicationSession ( string clientID, string clientSecret, int _waitTimeoutSeconds = 30 ) : System | ||
ApplicationSession ( string clientID, string clientSecret, string bearerToken, int _waitTimeoutSeconds = 30 ) : System | ||
GetAsync ( string url, string>.SortedDictionary |
Use OAuth2 Bearer To do read-only GET query
|
|
PostAsync ( string url, string>.SortedDictionary |
Use OAuth2 Bearer Token for POST
|
public ApplicationSession ( string clientID, string clientSecret, int _waitTimeoutSeconds = 30 ) : System | ||
clientID | string | |
clientSecret | string | |
_waitTimeoutSeconds | int | |
return | System |
public ApplicationSession ( string clientID, string clientSecret, string bearerToken, int _waitTimeoutSeconds = 30 ) : System | ||
clientID | string | |
clientSecret | string | |
bearerToken | string | |
_waitTimeoutSeconds | int | |
return | System |
public GetAsync ( string url, string>.SortedDictionary |
||
url | string | URL to call |
parameters | string>.SortedDictionary | Params to send |
return | Task |
public PostAsync ( string url, string>.SortedDictionary |
||
url | string | URL to call |
parameters | string>.SortedDictionary | Params to send |
forInitialAuth | bool | Is for an initial auth to get bearer token |
return | Task |