So I have this header for my authorization:
string oAuthHeader = string.Format("OAuth oath_consumer_key=\"{0}\",oath_signature_method=\"{1}\",oath_timestamp=\"{3}\",oath_nonce=\"{4}\",oath_version=\"{5}\",oath_signature=\"{2}\"", _consumerKey, OAuthSignatureMethod.HmacSha1, GenerateSignature(), GenerateTimeStamp(), GenerateNonce(), Version);
Which gets added here:
request.AddHeader("Authorization", oAuthHeader);
Been seeing a few demos on this, but they all include the token. In this case, there is no token, just key and secret. How would I go about generating the hmacsha1 signature?