OAuthUtility.CreateAuthorizationHeaderValue method (1 of 4)

Create OAuth authentication header.

public static string CreateAuthorizationHeaderValue(string consumerToken, string consumerSecret)

See Also


OAuthUtility.CreateAuthorizationHeaderValue method (2 of 4)

Create OAuth authentication header with callback attribute.

public static string CreateAuthorizationHeaderValue(string consumerToken, string consumerSecret, 
    string callback)

See Also


OAuthUtility.CreateAuthorizationHeaderValue method (3 of 4)

Create OAuth authentication header with access token and secret.

public static string CreateAuthorizationHeaderValue(string consumerToken, string consumerSecret, 
    string accessToken, string accessSecret)

See Also


OAuthUtility.CreateAuthorizationHeaderValue method (4 of 4)

Create OAuth authentication header with temporary token, secret, and verifier.

public static string CreateAuthorizationHeaderValue(string consumerToken, string consumerSecret, 
    string temporaryToken, string temporarySecret, string verifier)

See Also