Class OAuthClientBase
Inheritance
OAuthClientBase
Assembly: DotNetNuke.dll
Syntax
public abstract class OAuthClientBase
Constructors
OAuthClientBase(int, AuthMode, string)
Declaration
protected OAuthClientBase(int portalId, AuthMode mode, string service)
Parameters
Fields
OAuthTokenKey
Declaration
protected const string OAuthTokenKey = "oauth_token"
Field Value
Properties
APIKey
Declaration
protected string APIKey { get; set; }
Property Value
APIResource
Declaration
protected string APIResource { get; set; }
Property Value
APISecret
Declaration
protected string APISecret { get; set; }
Property Value
AccessToken
Declaration
protected string AccessToken { get; set; }
Property Value
AuthToken
Declaration
protected string AuthToken { get; set; }
Property Value
AuthTokenExpiry
Declaration
protected TimeSpan AuthTokenExpiry { get; set; }
Property Value
AuthTokenName
Declaration
protected string AuthTokenName { get; set; }
Property Value
AuthorizationEndpoint
Declaration
protected Uri AuthorizationEndpoint { get; set; }
Property Value
AutoMatchExistingUsers
Declaration
public virtual bool AutoMatchExistingUsers { get; }
Property Value
CallbackUri
Declaration
public Uri CallbackUri { get; set; }
Property Value
MeGraphEndpoint
Declaration
protected Uri MeGraphEndpoint { get; set; }
Property Value
Mode
Declaration
protected AuthMode Mode { get; set; }
Property Value
Declaration
protected string OAuthHeaderCode { get; set; }
Property Value
OAuthVerifier
Declaration
protected string OAuthVerifier { get; }
Property Value
OAuthVersion
Declaration
protected string OAuthVersion { get; set; }
Property Value
PrefixServiceToUserName
Declaration
public virtual bool PrefixServiceToUserName { get; }
Property Value
RequestTokenEndpoint
Declaration
protected Uri RequestTokenEndpoint { get; set; }
Property Value
RequestTokenMethod
Declaration
protected HttpMethod RequestTokenMethod { get; set; }
Property Value
Scope
Declaration
protected string Scope { get; set; }
Property Value
Service
Declaration
public string Service { get; set; }
Property Value
TokenEndpoint
Declaration
protected Uri TokenEndpoint { get; set; }
Property Value
TokenMethod
Declaration
protected HttpMethod TokenMethod { get; set; }
Property Value
TokenSecret
Declaration
protected string TokenSecret { get; set; }
Property Value
UserGuid
Declaration
protected string UserGuid { get; set; }
Property Value
UserGuidKey
Declaration
protected virtual string UserGuidKey { get; }
Property Value
VerificationCode
Declaration
protected string VerificationCode { get; }
Property Value
Methods
AuthenticateUser(UserData, PortalSettings, string, Action<NameValueCollection>, Action<UserAuthenticatedEventArgs>)
Declaration
public virtual void AuthenticateUser(UserData user, PortalSettings settings, string ipAddress, Action<NameValueCollection> addCustomProperties, Action<UserAuthenticatedEventArgs> onAuthenticated)
Parameters
Authorize()
Declaration
public virtual AuthorisationResult Authorize()
Returns
GenerateNonce()
Declaration
protected virtual string GenerateNonce()
Returns
GenerateSignature(Uri, string, string, string, string, string, string, string, out string, out List<QueryParameter>)
Declaration
public string GenerateSignature(Uri url, string token, string tokenSecret, string callbackurl, string oauthVerifier, string httpMethod, string timeStamp, string nonce, out string normalizedUrl, out List<QueryParameter> requestParameters)
Parameters
Returns
GenerateTimeStamp()
Declaration
protected virtual string GenerateTimeStamp()
Returns
GetCurrentUser<TUserData>()
Declaration
public virtual TUserData GetCurrentUser<TUserData>() where TUserData : UserData
Returns
Type |
Description |
TUserData |
|
Type Parameters
Name |
Description |
TUserData |
|
GetExpiry(string)
Declaration
protected virtual TimeSpan GetExpiry(string responseText)
Parameters
Type |
Name |
Description |
string |
responseText |
|
Returns
GetToken(string)
Declaration
protected virtual string GetToken(string responseText)
Parameters
Type |
Name |
Description |
string |
responseText |
|
Returns
HaveVerificationCode()
Declaration
public bool HaveVerificationCode()
Returns
IsCurrentService()
Declaration
public bool IsCurrentService()
Returns
IsCurrentUserAuthorized()
Declaration
public bool IsCurrentUserAuthorized()
Returns
LoadTokenCookie(string)
Declaration
protected void LoadTokenCookie(string suffix)
Parameters
Type |
Name |
Description |
string |
suffix |
|
RemoveToken()
Declaration
public void RemoveToken()
UrlEncode(string)
Declaration
public static string UrlEncode(string value)
Parameters
Type |
Name |
Description |
string |
value |
|
Returns
Extension Methods