Click or drag to resize
TokenManagerExpireRequestTokenAndStoreNewAccessToken Method
Deletes a request token and its associated secret and stores a new access token and secret.

Namespace: CMS.SocialMedia
Assembly: CMS.SocialMedia (in CMS.SocialMedia.dll) Version: 9.0.0
Syntax
C#
public void ExpireRequestTokenAndStoreNewAccessToken(
	string consumerKey,
	string requestToken,
	string accessToken,
	string accessTokenSecret
)

Parameters

consumerKey
Type: SystemString
The Consumer that is exchanging its request token for an access token.
requestToken
Type: SystemString
The Consumer's request token that should be deleted/expired.
accessToken
Type: SystemString
The new access token that is being issued to the Consumer.
accessTokenSecret
Type: SystemString
The secret associated with the newly issued access token.

Implements

ITokenManager.ExpireRequestTokenAndStoreNewAccessToken(String, String, String, String)
See Also