Class OAuth1
This class represents credential for OAuth1.
Inherited Members
Namespace: Kinvey
Assembly: Kinvey.dll
Syntax
public class OAuth1 : AccessToken
Constructors
| Improve this Doc View SourceOAuth1(String)
Initializes a new instance of the OAuth1 class.
Declaration
public OAuth1(string accessToken)
Parameters
Type | Name | Description |
---|---|---|
System.String | accessToken | Access token. |
OAuth1(String, String, String, String)
Initializes a new instance of the OAuth1 class.
Declaration
public OAuth1(string accessToken, string accesstokensecret, string consumerkey, string consumersecret)
Parameters
Type | Name | Description |
---|---|---|
System.String | accessToken | Access token. |
System.String | accesstokensecret | Access token secret. |
System.String | consumerkey | Consumer key. |
System.String | consumersecret | Consumer secret. |
Properties
| Improve this Doc View SourceaccessTokenSecret
Access token secret.
Declaration
protected string accessTokenSecret { get; set; }
Property Value
Type | Description |
---|---|
System.String | The accessTokenSecret property gets/sets the value of the string field, _accessTokenSecret. |
consumerKey
Consumer key.
Declaration
protected string consumerKey { get; set; }
Property Value
Type | Description |
---|---|
System.String | The consumerKey property gets/sets the value of the string field, _consumerKey. |
consumerSecret
Consumer secret.
Declaration
protected string consumerSecret { get; set; }
Property Value
Type | Description |
---|---|
System.String | The consumerSecret property gets/sets the value of the string field, _consumerSecret. |