Create OAuth authentication header.
public static string CreateAuthorizationHeaderValue(string consumerToken, string consumerSecret)
Create OAuth authentication header with callback attribute.
public static string CreateAuthorizationHeaderValue(string consumerToken, string consumerSecret,
string callback)
Create OAuth authentication header with access token and secret.
public static string CreateAuthorizationHeaderValue(string consumerToken, string consumerSecret,
string accessToken, string accessSecret)
Create OAuth authentication header with temporary token, secret, and verifier.
public static string CreateAuthorizationHeaderValue(string consumerToken, string consumerSecret,
string temporaryToken, string temporarySecret, string verifier)