Click or drag to resize
OAuthAccessToken Class
Represents a response for an OAuth access token request.
Inheritance Hierarchy
SystemObject
  CMS.SocialMarketingOAuthAccessToken

Namespace: CMS.SocialMarketing
Assembly: CMS.SocialMarketing (in CMS.SocialMarketing.dll) Version: 11.0.0
Syntax
C#
public class OAuthAccessToken

The OAuthAccessToken type exposes the following members.

Constructors
  NameDescription
Public methodOAuthAccessToken
Top
Properties
  NameDescription
Public propertyAccessToken
Gets or sets the access token.
Public propertyExpiresIn
Gets or sets the number of seconds till the access token expires.
Public propertyTokenType
Gets or sets the access token type.
Top
Remarks
The response has be following format:
{
    "access_token": {access-token}, 
    "token_type": {type},
    "expires_in":  {seconds-til-expiration}
}
See https://developers.facebook.com/docs/facebook-login/manually-build-a-login-flow#exchangecode for details.
See Also